@charset "UTF-8";
/* リセットcss */
/* ===================================================================
 style info : リセット及びフォントサイズ
=================================================================== */
/*
html5doctor.com Reset Stylesheet
v1.4.1
2010-03-01
Author: Richard Clark - http://richclarkdesign.com
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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;
  word-break: break-all;
}

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

nav ul {
  list-style: none;
}

ul li,
ol li {
  list-style: none;
}

address {
  font-style: normal;
}

blockquote, q {
  quotes: none;
}

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

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

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

iframe, video {
  vertical-align: bottom;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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 #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

select, input, button, textarea, button {
  outline: 0;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

label[for],
input[type="checkbox"],
input[type="radio"],
input[type="button"],
select,
option {
  cursor: pointer;
  outline: 0;
  border: 0;
}

optgroup {
  cursor: default;
}

sup,
sub {
  font-size: 75%;
}

select {
  min-width: 2em;
}

textarea {
  resize: vertical;
  width: 100%;
  margin: 0;
}

/* 共通スタイル */
/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */
/*----------------------------------------------------
	共通
----------------------------------------------------*/
html {
  overflow-y: scroll;
  /* スクロールバーの有無によるズレ対策 */
  font-size: 62.5%;
  background: #ffffff;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  color: #000;
}

a:hover {
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  opacity: 0.8;
}

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */
#header {
  padding: 12px 25px;
  background: #F6F0E4;
  min-height: 75px;
}

@media screen and (max-width: 480px) {
  #header {
    min-height: 50px;
    padding: 10px 15px;
  }
}

#header > .header-wrap {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1280px) {
  #header > .header-wrap {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

#header > .header-wrap > .logobox {
  flex: 0 0 340px;
  -webkit-flex: 0 0 340px;
}

@media screen and (max-width: 1780px) {
  #header > .header-wrap > .logobox {
    flex: 0 0 180px;
    -webkit-flex: 0 0 180px;
    margin: 0 25px 0 0;
  }
}

@media screen and (max-width: 480px) {
  #header > .header-wrap > .logobox {
    flex: 0 0 150px;
    -webkit-flex: 0 0 150px;
  }
}

#header > .header-wrap > .logobox img {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 0 0 0 35px;
}

@media screen and (max-width: 1780px) {
  #header > .header-wrap > .logobox img {
    margin: 0 0 0 0;
  }
}

#header > .header-wrap > .navbox {
  flex: 1 1;
  -webkit-flex: 1 1;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1780px) {
  #header > .header-wrap > .navbox {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 1280px) {
  #header > .header-wrap > .navbox {
    display: none;
  }
}

#header > .header-wrap > .navbox > .gnav > .navitem {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1780px) {
  #header > .header-wrap > .navbox > .gnav > .navitem {
    align-items: flex-end;
    -webkit-align-items: flex-end;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

#header > .header-wrap > .navbox > .gnav > .navitem > .item {
  padding: 0 16px 0 0;
  margin: 0 16px 0 0;
  position: relative;
  white-space: nowrap;
}

@media screen and (max-width: 1600px) {
  #header > .header-wrap > .navbox > .gnav > .navitem > .item {
    padding: 0 12px 0 0;
    margin: 0 12px 0 0;
  }
}

#header > .header-wrap > .navbox > .gnav > .navitem > .item:not(:last-of-type):before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 16px;
  display: block;
  background: #707070;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#header > .header-wrap > .navbox > .gnav > .navitem > .item a {
  color: #000;
}

@media screen and (max-width: 1600px) {
  #header > .header-wrap > .navbox > .gnav > .navitem > .item a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#header > .header-wrap > .navbox > .cv {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1700px) {
  #header > .header-wrap > .navbox > .cv {
    display: block;
  }
}

#header > .header-wrap > .navbox > .cv > .tel {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
  margin: 0 10px 5px 0;
  text-align: center;
}

#header > .header-wrap > .navbox > .cv > .tel a {
  display: inline-block;
  margin: 0 0 0 10px;
  letter-spacing: 0.1em;
}

#header > .header-wrap > .navbox > .cv > .mainbtn a {
  width: 270px;
  height: 45px;
  padding: 0;
}

#header > .header-wrap > .navbox > .cv > .mainbtn a:before,
#header > .header-wrap > .navbox > .cv > .mainbtn a:after {
  content: none;
}

#header > .header-wrap > .navbox > .cv > .mainbtn a img {
  max-height: 100%;
}

@media screen and (max-width: 1600px) {
  #header > .header-wrap > .navbox > .cv > .mainbtn a {
    width: 230px;
    height: 38.3px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* -----------------------------------------------------------
    BreadCrumbs
----------------------------------------------------------- */
.breadcrumbs {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin-top: 15px;
}

@media screen and (max-width: 980px) {
  .breadcrumbs {
    max-width: 100%;
  }
}

.breadcrumbs > .navitem {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs > .navitem > .item {
  margin: 0 0 5px 0;
  position: relative;
}

.breadcrumbs > .navitem > .item:not(:last-of-type):after {
  content: "\f105";
  font-family: "fontawesome";
  margin: 0 15px;
}

/* -----------------------------------------------------------
    title
----------------------------------------------------------- */
.verticaltitle {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.45455;
  letter-spacing: 0.5em;
  font-weight: normal;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .verticaltitle {
    writing-mode: horizontal-tb;
  }
}

@media screen and (max-width: 480px) {
  .verticaltitle {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.verticaltitle span {
  display: block;
  margin: 0 0 0 1em;
}

@media screen and (max-width: 768px) {
  .verticaltitle span {
    margin: 0 0;
  }
}

.verticaltitle span:nth-of-type(2) {
  margin: 3em 0 0 1em;
}

@media screen and (max-width: 768px) {
  .verticaltitle span:nth-of-type(2) {
    margin: 0 0 0 2em;
  }
}

@media screen and (max-width: 480px) {
  .verticaltitle span:nth-of-type(2) {
    margin: 0 0 0 0;
  }
}

.verticaltitle span:nth-of-type(3) {
  margin: 5em 0 0 em;
}

@media screen and (max-width: 768px) {
  .verticaltitle span:nth-of-type(3) {
    margin: 0 0 0 4em;
  }
}

@media screen and (max-width: 480px) {
  .verticaltitle span:nth-of-type(3) {
    margin: 0 0 0 0;
  }
}

.arrowtitle {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.23077;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 480px) {
  .arrowtitle {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.arrowtitle:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -33px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 17.5px;
  height: 3px;
  display: block;
  background: url(../img/common/arrow-title-icon.svg) no-repeat center/contain;
}

/* -----------------------------------------------------------
    Button
----------------------------------------------------------- */
.mainbtn {
  position: relative;
}

@media screen and (max-width: 380px) {
  .mainbtn.large {
    width: 100%;
    padding-top: 17%;
    position: relative;
  }
}

@media screen and (max-width: 380px) {
  .mainbtn.large a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.mainbtn a {
  color: #fff;
  line-height: 1.42857;
  letter-spacing: 0.05em;
  position: relative;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 0;
  padding: 0 0 10px;
}

.mainbtn a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/btn_back.svg) no-repeat center/contain;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.mainbtn a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 30px;
}

@media screen and (max-width: 480px) {
  .mainbtn a:after {
    margin: 0 0 0 10px;
  }
}

/* -----------------------------------------------------------
    Globalnavigation
----------------------------------------------------------- */
#menuicon {
  display: none;
}

@media screen and (max-width: 1280px) {
  #menuicon {
    display: block;
    width: 40px;
    height: 50px;
    position: relative;
    display: block;
    margin: 0 0 0 20px;
  }
}

#menuicon > span {
  width: 36px;
  height: 2px;
  background: #000000;
  position: absolute;
  left: calc( ( 50px - 36px ) / 2);
}

#menuicon > span:first-child {
  top: 15px;
}

#menuicon > span:nth-child(2) {
  top: calc(50% - 1px);
}

#menuicon > span:nth-child(3) {
  bottom: 15px;
}

#overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
}

#hamburgerwrap {
  width: 260px;
  height: 100vh;
  overflow-y: scroll;
  background: #F6F0E4;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
  transform: translateX(320px);
  transition: all 0.3s ease 0s;
}

#hamburgerwrap.open {
  transform: translateX(0);
}

#hamburgerwrap > #close {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  margin: 15px 15px 15px auto;
}

#hamburgerwrap > #close > span {
  width: 28px;
  height: 2px;
  background: #060606;
  position: absolute;
  left: 50%;
  top: 50%;
}

#hamburgerwrap > #close > span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

#hamburgerwrap > #close > span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#hamburgerwrap .navlist {
  margin: 0 0 5%;
}

#hamburgerwrap .navlist li {
  border-bottom: 1px solid #ccc;
}

#hamburgerwrap .navlist li a {
  display: block;
  padding: 15px;
  color: #000;
}

#hamburgerwrap .cv {
  text-align: center;
  margin: 40px 0 0;
  width: calc(100% - 10px);
}

#hamburgerwrap .cv > .tel {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
  margin: 0 0 5px 0;
  text-align: center;
}

#hamburgerwrap .cv > .tel a {
  display: inline-block;
  margin: 0 0 0 10px;
  letter-spacing: 0.1em;
}

#hamburgerwrap .cv > .mainbtn {
  width: 100%;
  padding-top: 16%;
  position: relative;
}

#hamburgerwrap .cv > .mainbtn a {
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */
#footer {
  position: relative;
  z-index: 0;
}

#footer > .footertop {
  padding: 40px 0 60px 0;
  background: #F6F0E4;
}

#footer > .footertop > .footertopinner {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 980px) {
  #footer > .footertop > .footertopinner {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #footer > .footertop > .footertopinner {
    display: block;
  }
}

#footer > .footertop > .footertopinner > .image {
  flex: 1 1;
  -webkit-flex: 1 1;
  margin: 0 6% 0 0;
  max-width: 388px;
}

@media screen and (max-width: 767px) {
  #footer > .footertop > .footertopinner > .image {
    max-width: 100%;
    margin: 0 0 5% 0;
  }
  #footer > .footertop > .footertopinner > .image img {
    width: 100%;
  }
}

#footer > .footertop > .footertopinner > .informationbox {
  flex: 1 1;
  -webkit-flex: 1 1;
}

#footer > .footertop > .footertopinner > .informationbox > .logo {
  margin: 0 0 15px;
}

#footer > .footertop > .footertopinner > .informationbox > .logo img {
  max-width: 315px;
  width: 100%;
}

#footer > .footertop > .footertopinner > .informationbox > .read {
  line-height: 1.57143;
  margin: 0 0 25px;
}

#footer > .footertop > .footertopinner > .informationbox > .tel {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  /*text-align: center;*/
  margin: 0 0 15px;
}

#footer > .footertop > .footertopinner > .informationbox > .tel a {
  font-size: 30px;
  font-size: 3rem;
  line-height: 0.86667;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 0 0 0 18px;
}

#footer > .footertop > .footertopinner > .informationbox > .mainbtn {
  /*text-align: center;*/
  margin: 0 0 25px;
}

@media screen and (max-width: 380px) {
  #footer > .footertop > .footertopinner > .informationbox > .mainbtn {
    width: 100%;
    padding-top: 17%;
    position: relative;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .mainbtn a {
  width: 358px;
  height: 61px;
  /*margin: 0 auto;*/
}

@media screen and (max-width: 767px) {
  #footer > .footertop > .footertopinner > .informationbox > .tel {
    text-align: center;
  }

  #footer > .footertop > .footertopinner > .informationbox > .mainbtn a {
    margin: 0 auto;
  }
  }

#footer > .footertop > .footertopinner > .informationbox > .mainbtn a {
  width: 270px;
  height: auto;
  padding: 0;
}

#footer > .footertop > .footertopinner > .informationbox > .mainbtn a:before,
#footer > .footertop > .footertopinner > .informationbox > .mainbtn a:after {
  content: none;
}

#footer > .footertop > .footertopinner > .informationbox > .mainbtn a img {
  max-height: 100%;
}

@media screen and (max-width: 380px) {
  #footer > .footertop > .footertopinner > .informationbox > .mainbtn a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.2rem;
    padding: 0 1em 10px 0;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .information {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 15px;
}

#footer > .footertop > .footertopinner > .informationbox > .information > .title {
  margin: 0 14px 0 0;
  padding: 0 14px 0 0;
  position: relative;
}

#footer > .footertop > .footertopinner > .informationbox > .information > .title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 14px;
  display: block;
  background: #000000;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 480px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays {
    display: block;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays > .item:not(:last-of-type) {
  margin: 0 13px 0 0;
}

@media screen and (max-width: 768px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays > .item:not(:last-of-type) {
    margin: 0 15px 15px 0;
  }
}

@media screen and (max-width: 480px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .closeddays > .item:not(:last-of-type) {
    margin: 0 0 15px 0;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 8px;
}

@media screen and (max-width: 768px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation {
    display: block;
    margin: 0 0 15px;
  }
}

@media screen and (max-width: 767px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 480px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation {
    display: block;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .title {
  flex: 0 0 5em;
  -webkit-flex: 0 0 5em;
  margin: 0 8px 0 0;
}

@media screen and (max-width: 768px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .title {
    margin: 0 10px 10px 0;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .detail > .calender {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 380px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .detail > .calender {
    display: block;
  }
}

#footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .detail > .calender > .item:not(:last-of-type) {
  margin: 0 13px 0 0;
}

@media screen and (max-width: 380px) {
  #footer > .footertop > .footertopinner > .informationbox > .information > .detail > .nestinformation > .detail > .calender > .item:not(:last-of-type) {
    margin: 0 0 10px 0;
  }
}

#footer > .footernavgation-wrap {
  padding: 6% 0 60px;
  background: #F6F0E4 url(../img/common/footer-back-decoration01.svg) no-repeat center/contain;
}

@media screen and (max-width: 480px) {
  #footer > .footernavgation-wrap {
    padding: 5% 0 5%;
  }
}

#footer > .footernavgation-wrap > .footernavigationinner {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  #footer > .footernavgation-wrap > .footernavigationinner {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #footer > .footernavgation-wrap > .footernavigationinner {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  #footer > .footernavgation-wrap > .footernavigationinner > .navitem {
    margin: 0 0 20px;
  }
}

#footer > .footernavgation-wrap > .footernavigationinner > .navitem > .item:not(:last-of-type) {
  margin: 0 0 40px;
}

@media screen and (max-width: 480px) {
  #footer > .footernavgation-wrap > .footernavigationinner > .navitem > .item:not(:last-of-type) {
    margin: 0 0 20px;
  }
}

#footer > .footernavgation-wrap > .footernavigationinner > .navitem > .item > .columnitem {
  margin: 30px 0 0 2em;
}

#footer > .footernavgation-wrap > .footernavigationinner > .navitem > .item > .columnitem > .item {
  margin: 0 0 20px;
  position: relative;
}

#footer > .footernavgation-wrap > .footernavigationinner > .navitem > .item > .columnitem > .item:before {
  content: "";
  display: block;
  width: 7.6px;
  height: 12.6px;
  background: url(../img/common/footer-column-icon.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: -1em;
}

#footer > .copyright {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  padding: 30px 5% 30px;
  background: #F6F0E4;
}

@media screen and (max-width: 480px) {
  #footer > .copyright {
    padding: 15px 5% 15px;
  }
}

/* 個別スタイル */
/* トップページ */
.mainimg-wrap {
  min-height: 700px;
  height: calc(100vh - 75px);
  position: relative;
  z-index: 0;
  background: #F6F0E4;
}

@media screen and (max-width: 1600px) {
  .mainimg-wrap {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .mainimg-wrap {
    min-height: auto;
    height: auto;
  }
}

.mainimg-wrap:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 470px);
  height: 100%;
  background: url(../img/top/main.png) no-repeat center/cover;
}

@media screen and (max-width: 1600px) {
  .mainimg-wrap:after {
    width: 75%;
  }
}

@media screen and (max-width: 480px) {
  .mainimg-wrap:after {
    width: 72.5%;
  }
}

.mainimg-wrap > .textbox {
  position: absolute;
  z-index: 1;
  left: 2.25%;
  max-width: 38%;
  width: 100%;
  height: 100%;
  padding: 0 0 2.5% 0;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1600px) {
  .mainimg-wrap > .textbox {
    max-width: 25%;
    left: 15%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .mainimg-wrap > .textbox {
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    padding: 15% 0;
    margin: 0 0 0 7.5%;
  }
}

.mainimg-wrap > .textbox > .title {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.25;
  letter-spacing: 0.3em;
  font-weight: normal;
  writing-mode: vertical-rl;
  margin: 0 0 10%;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .mainimg-wrap > .textbox > .title {
    -moz-text-shadow:
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    2px 2px 4px rgba(255, 255, 255, 1),
    2px -2px 4px rgba(255, 255, 255, 1),
    -2px 2px 4px rgba(255, 255, 255, 1),
    -2px -2px 4px rgba(255, 255, 255, 1),
    0px 0px 8px rgba(255, 255, 255, 1),
    2px 2px 8px rgba(255, 255, 255, 1),
    2px -2px 8px rgba(255, 255, 255, 1),
    -2px 2px 8px rgba(255, 255, 255, 1),
    -2px -2px 8px rgba(255, 255, 255, 1),
    0px 0px 16px rgba(255, 255, 255, 1);
    -webkit-text-shadow:
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    2px 2px 4px rgba(255, 255, 255, 1),
    2px -2px 4px rgba(255, 255, 255, 1),
    -2px 2px 4px rgba(255, 255, 255, 1),
    -2px -2px 4px rgba(255, 255, 255, 1),
    0px 0px 8px rgba(255, 255, 255, 1),
    2px 2px 8px rgba(255, 255, 255, 1),
    2px -2px 8px rgba(255, 255, 255, 1),
    -2px 2px 8px rgba(255, 255, 255, 1),
    -2px -2px 8px rgba(255, 255, 255, 1),
    0px 0px 16px rgba(255, 255, 255, 1);
    -ms-text-shadow:
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    2px 2px 4px rgba(255, 255, 255, 1),
    2px -2px 4px rgba(255, 255, 255, 1),
    -2px 2px 4px rgba(255, 255, 255, 1),
    -2px -2px 4px rgba(255, 255, 255, 1),
    0px 0px 8px rgba(255, 255, 255, 1),
    2px 2px 8px rgba(255, 255, 255, 1),
    2px -2px 8px rgba(255, 255, 255, 1),
    -2px 2px 8px rgba(255, 255, 255, 1),
    -2px -2px 8px rgba(255, 255, 255, 1),
    0px 0px 16px rgba(255, 255, 255, 1);
    text-shadow:
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 4px rgba(255, 255, 255, 1),
    2px 2px 4px rgba(255, 255, 255, 1),
    2px -2px 4px rgba(255, 255, 255, 1),
    -2px 2px 4px rgba(255, 255, 255, 1),
    -2px -2px 4px rgba(255, 255, 255, 1),
    0px 0px 8px rgba(255, 255, 255, 1),
    2px 2px 8px rgba(255, 255, 255, 1),
    2px -2px 8px rgba(255, 255, 255, 1),
    -2px 2px 8px rgba(255, 255, 255, 1),
    -2px -2px 8px rgba(255, 255, 255, 1),
    0px 0px 16px rgba(255, 255, 255, 1);
  }
}

@media screen and (max-width: 480px) {
  .mainimg-wrap > .textbox > .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mainimg-wrap > .textbox > .title > span {
  display: block;
  margin: 0 1em 0 0;
}

.mainimg-wrap > .textbox > .title > span:first-of-type {
  margin: 0 0;
}

@media screen and (max-width: 768px) {
  .mainimg-wrap > .textbox > .title > span {
    margin: 0 0.25em 0 0;
  }
}

.mainimg-wrap > .textbox > .image {
  max-width: 100%;
  width: 265px;
}

@media screen and (max-width: 768px) {
  .mainimg-wrap > .textbox > .image {
    width: 150px;
  }
}

.introduction-wrap {
  padding: calc(60px + 3em) 0 80px;
  background: url(../img/top/introduction_back.svg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .introduction-wrap {
    background: url(../img/top/introduction_back.svg) repeat-y right/250%;
  }
}

.introduction-wrap > .contents {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: calc(1250px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .introduction-wrap > .contents {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .introduction-wrap > .contents {
    display: block;
    padding: 0 30px;
  }
}

.introduction-wrap > .contents > .verticaltitle {
  margin: -3em 0 0 0;
}

@media screen and (max-width: 768px) {
  .introduction-wrap > .contents > .verticaltitle {
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .introduction-wrap > .contents > .verticaltitle > span {
    margin: 0 0 .25em 0;
  }
}

.introduction-wrap > .contents > .verticaltitle > span:nth-of-type(3) {
  margin: 5em 0 0;
}

@media screen and (max-width: 768px) {
  .introduction-wrap > .contents > .verticaltitle > span:nth-of-type(3) {
    margin: 0 0 .25em;
  }
}

.introduction-wrap > .contents > .image {
  flex: 0 1 575px;
  -webkit-flex: 0 1 575px;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 768px) {
  .introduction-wrap > .contents > .image {
    margin: 0 0 0 0;
    width: 100%;
  }
  .introduction-wrap > .contents > .image img {
    width: 100%;
  }
}

.introduction-wrap > .contents > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  flex: 0 1 457px;
  -webkit-flex: 0 1 457px;
  margin: 0 5% 0 0;
}

@media screen and (max-width: 768px) {
  .introduction-wrap > .contents > .read {
    margin: 0 0 2.5% 0;
  }
}

.introduction-wrap > .contents > .mainbtn.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .introduction-wrap > .contents > .mainbtn.sp {
    display: block;
    text-align: center;
    margin: 40px 0 0;
  }
}

.introduction-wrap > .contents > .mainbtn.sp a {
  max-width: 300.3px;
  height: 61px;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 1.5em 10px 0;
  margin: 0 auto;
}

.introduction-wrap > .contents > .read > p {
  margin: 0 0 2em;
}

.trouble-wrap {
  padding: 80px 0 80px;
}

.trouble-wrap > .arrowtitle {
  margin: 0 0 3.65%;
}

@media screen and (max-width: 1280px) {
  .trouble-wrap > .arrowtitle {
    margin: 0 0 70px;
  }
}

.trouble-wrap > .troubleitem {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  align-items: stretch;
  -webkit-align-items: stretch;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 3.44%;
}

@media screen and (max-width: 980px) {
  .trouble-wrap > .troubleitem {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .trouble-wrap > .troubleitem {
    display: block;
    margin: 0 auto 5%;
  }
}

.trouble-wrap > .troubleitem > .item {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  line-height: 25px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: calc(50% - 11.5px);
  margin: 0 23px 28px 0;
  padding: 24px 20px 24px 35px;
  min-height: 130px;
  /*-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);*/
}

@media screen and (max-width: 767px) {
  .trouble-wrap > .troubleitem > .item {
    width: 100%;
  }
}

.trouble-wrap > .troubleitem > .item:before {
  content: "";
  width: 48px;
  height: 80px;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  background: url(../img/top/trouble-item-icon.svg) no-repeat center/contain;
  margin: 0 30px 0 0;
}

.trouble-wrap > .troubleitem > .item:nth-of-type(2n) {
  margin: 0 0 28px 0;
}

.trouble-wrap > .mainbtn {
  text-align: center;
}

.trouble-wrap > .mainbtn a {
  width: 238px;
  height: 61px;
  margin: 0 auto;
  background: url(../img/common/btn_back_min.svg) no-repeat center/contain;
}

.rationale-wrap {
  padding: 80px 5%;
  background: url(../img/top/rational_back.svg) no-repeat center/cover;
  position: relative;
}

@media screen and (max-width: 768px) {
  .rationale-wrap {
    padding: 5%;
  }
}

.rationale-wrap > .verticaltitle {
  position: absolute;
  top: -1em;
  right: 25%;
}

@media screen and (max-width: 1600px) {
  .rationale-wrap > .verticaltitle {
    right: 15%;
  }
}

@media screen and (max-width: 980px) {
  .rationale-wrap > .verticaltitle {
    right: 5%;
  }
}

@media screen and (max-width: 768px) {
  .rationale-wrap > .verticaltitle {
    font-size: 18px;
    font-size: 1.8rem;
    writing-mode: vertical-rl;
    top: -2.5em;
  }
}

.rationale-wrap > .verticaltitle span:nth-of-type(2) {
  margin: 2em 0 0 1em;
}

@media screen and (max-width: 768px) {
  .rationale-wrap > .verticaltitle span:nth-of-type(2) {
    margin: 2em 0 0 .25em;
  }
}

.rationale-wrap > .verticaltitle span:nth-of-type(3) {
  margin: 7em 0 0 1em;
}

.rationale-wrap > .verticaltitle span.line {
  position: relative;
}

@media screen and (max-width: 768px) {
  .rationale-wrap > .verticaltitle span.line {
    display: table;
  }
}

.rationale-wrap > .verticaltitle span.line:after {
  content: "";
  height: 50px;
  width: 1px;
  background: #000000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.rationale-wrap > .read {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-align: center;
}
.rationale-wrap > .read span {
  font-weight: 800;
  color: #750000;
}

.rationale-wrap > .read:not(:last-of-type) {
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .rationale-wrap > .read:not(:last-of-type) {
    margin: 0 0 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .rationale-wrap > .read:nth-of-type(-n + 2) {
    margin: 0 20% 30px 0;
  }
}

@media screen and (max-width: 480px) {
  .rationale-wrap > .read:nth-of-type(-n + 2) {
    margin: 0 30% 30px 0;
  }
}

@media screen and (max-width: 768px) {
  .rationale-wrap > .read {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .rationale-wrap > .read {
    text-align: left;
    margin: 0 0 1em;
  }
}

.firstvisit-wrap {
  padding: 80px 0 60px;
}

.firstvisit-wrap > .arrowtitle {
  margin: 0 0 5.21%;
}

@media screen and (max-width: 1280px) {
  .firstvisit-wrap > .arrowtitle {
    margin: 0 0 80px;
  }
}

@media screen and (max-width: 480px) {
  .firstvisit-wrap > .arrowtitle {
    margin: 0 0 60px;
  }
}

.firstvisit-wrap > .flowitem {
  max-width: calc(1250px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto 3%;
}

@media screen and (max-width: 980px) {
  .firstvisit-wrap > .flowitem {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .firstvisit-wrap > .flowitem {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .firstvisit-wrap > .flowitem {
    display: block;
  }
}

.firstvisit-wrap > .flowitem > .item {
  position: relative;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  flex: 1 1;
  -webkit-flex: 1 1;
}

@media screen and (max-width: 768px) {
  .firstvisit-wrap > .flowitem > .item {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    width: 47.5%;
  }
}

@media screen and (max-width: 767px) {
  .firstvisit-wrap > .flowitem > .item {
    width: 100%;
  }
}

.firstvisit-wrap > .flowitem > .item:not(:last-of-type) {
  margin: 0 3.8% 0 0;
}

@media screen and (max-width: 768px) {
  .firstvisit-wrap > .flowitem > .item:not(:last-of-type) {
    margin: 0 5% 7% 0;
  }
}

@media screen and (max-width: 767px) {
  .firstvisit-wrap > .flowitem > .item:not(:last-of-type) {
    margin: 0 0 7% 0;
  }
}

@media screen and (max-width: 480px) {
  .firstvisit-wrap > .flowitem > .item:not(:last-of-type) {
    margin: 0 0 10% 0;
  }
}

@media screen and (max-width: 768px) {
  .firstvisit-wrap > .flowitem > .item:nth-of-type(2n) {
    margin: 0 0 7% 0;
  }
}

@media screen and (max-width: 480px) {
  .firstvisit-wrap > .flowitem > .item:nth-of-type(2n) {
    margin: 0 0 10% 0;
  }
}

@media screen and (max-width: 768px) {
  .firstvisit-wrap > .flowitem > .item:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .firstvisit-wrap > .flowitem > .item:nth-last-of-type(-n + 2) {
    margin-bottom: 7%;
  }
}

@media screen and (max-width: 480px) {
  .firstvisit-wrap > .flowitem > .item:nth-last-of-type(-n + 2) {
    margin-bottom: 10%;
  }
}

.firstvisit-wrap > .flowitem > .item:before {
  content: "";
  width: 75px;
  height: 72px;
  display: block;
  position: absolute;
  top: -37.5px;
  left: -30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 980px) {
  .firstvisit-wrap > .flowitem > .item:before {
    width: 55px;
    height: 53px;
    top: -27.5px;
    left: -20px;
  }
}

@media screen and (max-width: 767px) {
  .firstvisit-wrap > .flowitem > .item:before {
    width: 45px;
    height: 42px;
    top: -20px;
    left: -10px;
  }
}

.firstvisit-wrap > .flowitem > .item:nth-of-type(1):before {
  background-image: url(../img/top/flow_number01.svg);
}

.firstvisit-wrap > .flowitem > .item:nth-of-type(2):before {
  background-image: url(../img/top/flow_number02.svg);
}

.firstvisit-wrap > .flowitem > .item:nth-of-type(3):before {
  background-image: url(../img/top/flow_number03.svg);
}

.firstvisit-wrap > .flowitem > .item:nth-of-type(4):before {
  background-image: url(../img/top/flow_number04.svg);
}

.firstvisit-wrap > .flowitem > .item > .image {
  order: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 0 15px;
}

.firstvisit-wrap > .flowitem > .item > .image img {
  width: 100%;
}

.firstvisit-wrap > .flowitem > .item > .read {
  order: 2;
  max-width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  .firstvisit-wrap > .flowitem > .item > .read {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.firstvisit-wrap > .mainbtn {
  text-align: center;
}

.firstvisit-wrap > .mainbtn a {
  width: 238px;
  height: 61px;
  margin: 0 auto;
  background: url(../img/common/btn_back_min.svg) no-repeat center/contain;
}

.consultationhours-wrap {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 0 auto 60px;
}

@media screen and (max-width: 980px) {
  .consultationhours-wrap {
    max-width: 100%;
  }
}

.consultationhours-wrap > .arrowtitle {
  margin: 0 0 70px;
}

.consultationhours-wrap > .image {
  margin: 0 0 40px;
}

.consultationhours-wrap > .image img {
  width: 100%;
}

.consultationhours-wrap > .noteitem {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 25px;
  padding: 0 40px;
  margin: 0 0 6.4%;
}

@media screen and (max-width: 767px) {
  .consultationhours-wrap > .noteitem {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 20px;
  }
}

.consultationhours-wrap > .noteitem > .item {
  margin: 0 0 1.5em;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .consultationhours-wrap > .noteitem > .item {
    margin: 0 0 1em;
  }
}

.consultationhours-wrap > .noteitem > .item:before {
  content: "※";
  margin: 0 .5em 0 0;
}

.consultationhours-wrap > .noteitem > .item.bold {
  font-weight: 700;
}

@media screen and (max-width: 380px) {
  .consultationhours-wrap > .mainbtn {
    width: 100%;
    padding-top: 17%;
    position: relative;
  }
}

.consultationhours-wrap > .mainbtn a {
  width: 358px;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.consultationhours-wrap > .mainbtn a:before,
.consultationhours-wrap > .mainbtn a:after {
  content: none;
}

.consultationhours-wrap > .mainbtn a img {
  max-height: 100%;
}

@media screen and (max-width: 380px) {
  .consultationhours-wrap > .mainbtn a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 1em 10px 0;
  }
}

.access-wrap {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 0 auto 80px;
}

@media screen and (max-width: 980px) {
  .access-wrap {
    max-width: 100%;
  }
}

.access-wrap > .arrowtitle {
  margin: 0 0 62px;
}

.access-wrap > .contents {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .access-wrap > .contents {
    display: block;
  }
}

.access-wrap > .contents > .map {
  flex: 0 1 50%;
  -webkit-flex: 0 1 50%;
  max-width: 490px;
  width: 100%;
  position: relative;
  padding-top: 36.7346%;
}

@media screen and (max-width: 767px) {
  .access-wrap > .contents > .map {
    max-width: 100%;
  }
}

.access-wrap > .contents > .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-wrap > .contents > .textbox {
  padding: 4%;
}

.access-wrap > .contents > .textbox > .information:not(:last-of-type) {
  margin: 0 0 40px;
}

.access-wrap > .contents > .textbox > .information > .title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0625;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}

.access-wrap > .contents > .textbox > .information > .title h2 {
  font-weight: normal;
}

.access-wrap > .contents > .textbox > .information > .detail {
  line-height: 1.71429;
  letter-spacing: 0.05em;
}

/* 施術内容・料金 */
.lower .trouble-wrap {
  padding: 4.6% 0 0;
}

.lower .trouble-wrap > .arrowtitle {
  margin: 0 0 4.6%;
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .arrowtitle {
    margin: 0 0 10%;
  }
}

@media screen and (max-width: 480px) {
  .lower .trouble-wrap > .arrowtitle {
    margin: 0 0 15%;
  }
}

.lower .trouble-wrap > .troublecontents {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  margin: 0 auto 60px;
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .troublecontents {
    max-width: 100%;
  }
}

.lower .trouble-wrap > .troublecontents > .verticaltitle {
  position: absolute;
  right: 5%;
  top: -5%;
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .troublecontents > .verticaltitle {
    position: static;
    writing-mode: horizontal-tb;
    margin: 0 0 5%;
  }
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .troublecontents > .verticaltitle span:nth-of-type(1) {
    margin: 0 0 0 0;
  }
}

.lower .trouble-wrap > .troublecontents > .verticaltitle span:nth-of-type(2) {
  margin: 3em 0 0 .5em;
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .troublecontents > .verticaltitle span:nth-of-type(2) {
    margin: .5em 0 0 0;
  }
}

.lower .trouble-wrap > .troublecontents > .verticaltitle span:nth-of-type(3) {
  text-align: right;
  margin: 16em 0 0;
  white-space: nowrap;
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .troublecontents > .verticaltitle span:nth-of-type(3) {
    text-align: left;
    margin: .5em 0 0 0;
    white-space: wrap;
  }
}

.lower .trouble-wrap > .troublecontents > .contents {
  max-width: 800px;
  width: 100%;
  margin: 0 0 6.1%;
}

.lower .trouble-wrap > .troublecontents > .contents > .image {
  margin: 0 0 7.5%;
}

.lower .trouble-wrap > .troublecontents > .contents > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  padding: 0 20px;
}

@media screen and (max-width: 480px) {
  .lower .trouble-wrap > .troublecontents > .contents > .read {
    padding: 0 10px;
  }
}

.lower .trouble-wrap > .troublecontents > .troubleitem {
  align-items: stretch;
  -webkit-align-items: stretch;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 3.44%;
}

@media screen and (max-width: 767px) {
  .lower .trouble-wrap > .troublecontents > .troubleitem {
    display: block;
    margin: 0 auto 5%;
  }
}

.lower .trouble-wrap > .troublecontents > .troubleitem > .item {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  line-height: 25px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: calc(50% - 11.5px);
  margin: 0 23px 28px 0;
  padding: 24px 20px 24px 35px;
  min-height: 130px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .lower .trouble-wrap > .troublecontents > .troubleitem > .item {
    width: 100%;
  }
}

.lower .trouble-wrap > .troublecontents > .troubleitem > .item:before {
  content: "";
  width: 48px;
  height: 80px;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  background: url(../img/top/trouble-item-icon.svg) no-repeat center/contain;
  margin: 0 30px 0 0;
}

.lower .trouble-wrap > .troublecontents > .troubleitem > .item:nth-of-type(2n) {
  margin: 0 0 28px 0;
}

.lower .trouble-wrap > .solutionbox {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 5%;
  margin: 0 0 3.1%;
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .solutionbox {
    display: block;
  }
}

.lower .trouble-wrap > .solutionbox > .textbox {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  margin: 0 0 0 3.6%;
  width: calc(50% - 1.8%);
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .solutionbox > .textbox {
    width: 100%;
    margin: 0 0 5% 0;
  }
}

.lower .trouble-wrap > .solutionbox > .textbox > .title {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.81818;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 6.2%;
}

@media screen and (max-width: 480px) {
  .lower .trouble-wrap > .solutionbox > .textbox > .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.lower .trouble-wrap > .solutionbox > .textbox > .readbox {
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 6.2%;
}

.lower .trouble-wrap > .solutionbox > .textbox > .readbox > .read:not(:last-of-type) {
  margin: 0 0 2.6%;
}

.lower .trouble-wrap > .solutionbox > .textbox > .troubleitem > .item {
  line-height: 25px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 475px;
  width: 100%;
  margin: 0 0 28px 0;
  padding: 24px 20px 24px 35px;
  min-height: 130px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .solutionbox > .textbox > .troubleitem > .item {
    max-width: 100%;
  }
}

.lower .trouble-wrap > .solutionbox > .textbox > .troubleitem > .item:last-of-type {
  margin: 0 0 0 0;
}

@media screen and (max-width: 767px) {
  .lower .trouble-wrap > .solutionbox > .textbox > .troubleitem > .item {
    width: 100%;
  }
}

.lower .trouble-wrap > .solutionbox > .textbox > .troubleitem > .item:before {
  content: "";
  width: 48px;
  height: 80px;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  background: url(../img/top/trouble-item-icon.svg) no-repeat center/contain;
  margin: 0 30px 0 0;
}

.lower .trouble-wrap > .solutionbox > .imagebox {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  text-align: right;
  width: calc(50% - 1.8%);
}

@media screen and (max-width: 980px) {
  .lower .trouble-wrap > .solutionbox > .imagebox {
    width: 100%;
  }
  .lower .trouble-wrap > .solutionbox > .imagebox img {
    width: 100%;
  }
}

.lower .trouble-wrap > .solutionbox > .imagebox > .image.large {
  margin: 0 0 3.1%;
}

.lower .trouble-wrap > .sosume {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.36364;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 5%;
  margin: 0 0 60px;
}

@media screen and (max-width: 480px) {
  .lower .trouble-wrap > .sosume {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 10%;
  }
}

.price-wrap {
  max-width: calc(700px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 0 auto 9.3%;
}

@media screen and (max-width: 980px) {
  .price-wrap {
    max-width: 100%;
  }
}

.price-wrap > .arrowtitle {
  margin: 0 0 63px;
}

.price-wrap > .practitioner {
  margin: 0 0 8.5%;
}

@media screen and (max-width: 480px) {
  .price-wrap > .practitioner {
    margin: 0 0 5%;
  }
}

.price-wrap > .practitioner > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: table;
  margin: 0 auto 20px;
  padding: 10px;
  width: 197px;
  height: 41px;
  text-align: center;
  background: url(../img/price/practitioner-back.svg) no-repeat center/contain;
}

.price-wrap > .practitioner > .detail > .nameitem {
  align-items: flex-start;
  /*-webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;*/
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .price-wrap > .practitioner > .detail > .nameitem {
    display: block;
  }
}

.price-wrap > .practitioner > .detail > .nameitem > .item {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 0;
  /*margin: 0 2em 0 0;*/
}

.price-wrap > .calender {
  margin: 0 auto 20px;
  text-align: center;
}

.price-wrap > .calender img {
  width: 100%;
}

.price-wrap > .note {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 0 6.4%;
}

@media screen and (max-width: 767px) {
  .price-wrap > .note {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 20px;
  }
}

.price-wrap > .note > .item {
  margin: 0 0 1.5em;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .price-wrap > .note > .item {
    margin: 0 0 1em;
  }
}

.price-wrap > .note > .item:before {
  content: "※";
  margin: 0 .5em 0 0;
}


.yorozu-wrap {
  max-width: calc(700px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 0 auto 9.3%;
}

.yorozu-wrap > .explanation {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 0;
  margin: 0 0 2em 0;
}

.yorozu-wrap .treatment-detail td .supplement {
font-size: 1.2rem;
}

@media screen and (max-width: 980px) {
  .yorozu-wrap{
    max-width: 100%;
  }
}

.yorozu-wrap > .arrowtitle {
  margin: 0 0 63px;
}

.yorozu-wrap > .arrowtitle {
  margin: 0 0 63px;
}

@media screen and (max-width: 768px){
.treatment-detail .c-table tbody th .vertical {
    display: inline-block;
    width: 1.5em;
    line-height: 1.2;
}

.treatment-detail .c-table tbody th .rotate {
  display: inline-block;
  transform: rotate(90deg);
}

.treatment-detail .c-table tbody th .number{
	-webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
}

/* 一の会鍼灸院について */
.lower .aboutmain-wrap {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  padding: 30px 5% 0;
  margin: 0 auto 60px;
}

@media screen and (max-width: 980px) {
  .lower .aboutmain-wrap {
    max-width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap {
    width: 100%;
  }
}

.lower .aboutmain-wrap > .arrowtitle {
  margin: 0 0 10%;
}

@media screen and (max-width: 480px) {
  .lower .aboutmain-wrap > .arrowtitle {
    margin: 0 0 62px;
  }
}

.lower .aboutmain-wrap > .contents {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  margin: 0 0 0 10.2%;
  z-index: 0;
}

@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 0 auto;
    width: 100%;
  }
}


.lower .aboutmain-wrap > .contents:before {
  content: "";
  z-index: -1;
  width: 300px;
  height: 500px;
  background: url(../img/about/aboutmain-decoration.svg) no-repeat center/contain;
  position: absolute;
  left: -400px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents:before {
    content: "";
    z-index: -1;
    width: 120px;
    height: 320px;
    background: url(../img/about/aboutmain-decoration.svg) no-repeat center/contain;
    position: absolute;
    left: 0;
    bottom: auto;
    top: 95vw;
  }
}


@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents:before {
    left: 0;
  }
}

.lower .aboutmain-wrap > .contents > .verticaltitle {
  position: absolute;
  left: -25%;
  top: -15%;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle {
    top: 62vw;
    left: 0;
  }
}

@media screen and (max-width: 980px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle {
    top: 65vw;
  }
}
@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle {
    writing-mode: vertical-rl;
    top: 65vw;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 0 0 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle {
    margin: 0 0 5% 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 980px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(1) {
  }
}
@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(1) {
    margin-left: .5em;
  }
}

.lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(2) {
  margin-top: 4em;
}

@media screen and (max-width: 980px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(2) {
  }
}
@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(2) {
    margin-left: .5em;
  }
}

@media screen and (max-width: 480px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(2) {
  }
}

.lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(3) {
  margin: 15em 0 0 1em;
}

@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(3) {
    margin-top: 7em;
  }
}
@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents > .verticaltitle span:nth-of-type(3) {
    margin-left: 0;
  }
}

.lower .aboutmain-wrap > .contents > .readbox {
  flex: 0 0 513px;
  -webkit-flex: 0 0 513px;
  line-height: 2.14286;
  letter-spacing: 0.05em;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents > .readbox {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    max-width: 100%;
    order: 2;
  }
}

@media screen and (max-width: 980px) {
  .lower .aboutmain-wrap > .contents > .readbox {
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents > .readbox > .read {
    padding: 0 0 0 200px;
  }
}
@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents > .readbox > .read {
    padding: 0 0 0 130px;
  }
}
@media screen and (max-width: 480px) {
  .lower .aboutmain-wrap > .contents > .readbox > .read {
    padding: 0 0 0 0;
  }
  .lower .aboutmain-wrap > .contents > .readbox > .read:nth-of-type(-n+2) {
    padding: 0 0 0 120px;
  }
}

.lower .aboutmain-wrap > .contents > .readbox > .read:not(:last-of-type) {
  margin: 0 0 5%;
}

.lower .aboutmain-wrap > .contents > .image {
  flex: 0 0 446px;
  -webkit-flex: 0 0 446px;
}

@media screen and (max-width: 1280px) {
  .lower .aboutmain-wrap > .contents > .image {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 0 5%;
    order: 1;
  }
}
@media screen and (max-width: 980px) {
  .lower .aboutmain-wrap > .contents > .image {
    width: 1000%;
    margin: 0 0 40px;
  }
}


@media screen and (max-width: 768px) {
  .lower .aboutmain-wrap > .contents > .image {
    padding: 0 10px;
  }
}

.lower .aboutmain-wrap > .contents > .image img {
  width: 100%;
}

.lower .aboutinitiatives-wrap {
  padding: 0 0 80px;
}

.lower .aboutinitiatives-wrap > .arrowtitle {
  margin: 0 0 62px;
}

@media screen and (max-width: 480px) {
  .lower .aboutinitiatives-wrap > .arrowtitle {
    margin: 0 0 15%;
  }
}

.lower .aboutinitiatives-wrap > .maincontents {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  margin: 0 auto 120px;
}

@media screen and (max-width: 1180px) {
  .lower .aboutinitiatives-wrap > .maincontents {
    margin: 0 auto 30px;
  }
}

@media screen and (max-width: 980px) {
  .lower .aboutinitiatives-wrap > .maincontents {
    max-width: 100%;
  }
}

.lower .aboutinitiatives-wrap > .maincontents > .readbox {
  max-width: 54.7%;
  width: 100%;
  margin: 0 0 0 auto;
}
.lower .aboutinitiatives-wrap > .maincontents > .readbox > .image_sp {
  display: none;
}
.lower .aboutinitiatives-wrap > .maincontents > .readbox > .image_sp img {
  width: 100%;
}

@media screen and (max-width: 1180px) {
  .lower .aboutinitiatives-wrap > .maincontents > .readbox {
    max-width: 100%;
    margin: 0 0 5%;
  }
  .lower .aboutinitiatives-wrap > .maincontents > .readbox > .image_sp {
    display: block;
    margin: 0 0 30px;
  }
}

.lower .aboutinitiatives-wrap > .maincontents > .readbox > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .aboutinitiatives-wrap > .maincontents > .readbox > .title {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 30px;
  }
}

.lower .aboutinitiatives-wrap > .maincontents > .readbox > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .aboutinitiatives-wrap > .maincontents > .readbox > .read:not(:last-of-type) {
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .aboutinitiatives-wrap > .maincontents > .readbox > .read:not(:last-of-type) {
    margin: 0 0 20px;
  }
}

.lower .aboutinitiatives-wrap > .maincontents > .image {
  max-width: 511px;
  width: 100%;
  position: absolute;
  top: 0;
  left: -0;
}

@media screen and (max-width: 1180px) {
  .lower .aboutinitiatives-wrap > .maincontents > .image {
    display: none;
  }
}

.lower .aboutinitiatives-wrap > .maincontents > .image img {
  width: 100%;
}

.lower .aboutinitiatives-wrap > .readwrap {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .aboutinitiatives-wrap > .readwrap {
    max-width: 100%;
  }
}

.lower .aboutinitiatives-wrap > .readwrap > .readbox {
  max-width: 600px;
  margin: 0 auto 60px 0;
}
@media screen and (max-width: 1180px) {
  .lower .aboutinitiatives-wrap > .readwrap > .readbox {
    max-width: 100%;
    margin: 0 auto 60px 0;
  }
}

.lower .aboutinitiatives-wrap > .readwrap > .readbox > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .aboutinitiatives-wrap > .readwrap > .readbox > .read:not(:last-of-type) {
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .aboutinitiatives-wrap > .readwrap > .readbox > .read:not(:last-of-type) {
    margin: 0 0 20px;
  }
}

.lower .aboutinitiatives-wrap > .ownervoice-contents {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
}

@media screen and (max-width: 980px) {
  .lower .aboutinitiatives-wrap > .ownervoice-contents {
    max-width: 100%;
  }
}

.lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox {
  max-width: 515px;
  width: 100%;
  margin: 0 auto 0 0;
}

@media screen and (max-width: 1180px) {
  .lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox {
    max-width: 100%;
    margin: 0 0 30px;
  }
}

.lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox > .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox > .title br {
    display: none;
  }
}

.lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox > .read {
  line-height: 2.14286;
  letter-spacing: 0.05em;
}

.lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox > .read:not(:last-of-type) {
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .aboutinitiatives-wrap > .ownervoice-contents > .readbox > .read:not(:last-of-type) {
    margin: 0 0 40px;
  }
}

.lower .aboutinitiatives-wrap > .ownervoice-contents > .image {
  max-width: 511px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1180px) {
  .lower .aboutinitiatives-wrap > .ownervoice-contents > .image {
    position: static;
    max-width: 100%;
  }
}

.lower .aboutinitiatives-wrap > .ownervoice-contents > .image img {
  width: 100%;
}

.outline-wrap {
  padding: 80px 5% 80px;
  background: #F6F0E4 url(../img/about/outline-back.svg) repeat-x top/contain;
}

.outline-wrap > .contents {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  padding: 3.1% 7.2% 4.6%;
  background: #fff;
}

@media screen and (max-width: 980px) {
  .outline-wrap > .contents {
    max-width: 100%;
  }
}

.outline-wrap > .contents:not(:last-of-type) {
  margin: 0 auto 60px;
}

.outline-wrap > .contents > .arrowtitle {
  margin: 0 0 9.4%;
}

@media screen and (max-width: 480px) {
  .outline-wrap > .contents > .arrowtitle {
    margin: 0 0 17%;
  }
}

.outline-wrap > .contents > .outlineitem {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 20px 10px 20px 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .outline-wrap > .contents > .outlineitem {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .outline-wrap > .contents > .outlineitem {
    padding: 20px 10px 20px 10px;
  }
}

.outline-wrap > .contents > .outlineitem:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.outline-wrap > .contents > .outlineitem:last-of-type :after {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.outline-wrap > .contents > .outlineitem > .title {
  flex: 0 0 125px;
  -webkit-flex: 0 0 125px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .outline-wrap > .contents > .outlineitem > .title {
    margin: 0 0 10px;
  }
}

.outline-wrap > .contents > .outlineitem > .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.outline-wrap > .contents > .outlineitem > .detail > .nestflexitem {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .outline-wrap > .contents > .outlineitem > .detail > .nestflexitem {
    display: block;
  }
  .outline-wrap > .contents > .outlineitem > .detail > .nestflexitem:not(:last-of-type) {
    margin: 0 0 10px;
  }
}

.outline-wrap > .contents > .outlineitem > .detail > .nestflexitem > .title {
  flex: 0 1 7em;
  -webkit-flex: 0 1 7em;
}

.outline-wrap > .contents > .outlineitem > .detail > .nestflexitem > .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.outline-wrap > .contents > .outlineitem > .detail > .map > .title {
  margin: 0 0 26px;
}

.outline-wrap > .contents > .outlineitem > .detail > .map > .detail {
  position: relative;
  width: 100%;
  padding-top: 74.2187%;
}

.outline-wrap > .contents > .outlineitem > .detail > .map > .detail > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 初めての方へ */
.lower .beginner-wrap {
  padding: 30px 5% 80px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.lower .beginner-wrap:before {
  content: "";
  display: block;
  width: 346px;
  height: 231px;
  background: url(../img/beginner/mountain.svg) no-repeat center / contain;
  position: absolute;
  top: 14%;
  left: 19%;
}
@media screen and (max-width: 980px) {
  .lower .beginner-wrap:before {
    top: 14%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .lower .beginner-wrap:before {
    width: 250px;
    height: 166.91px;
    top: 20%;
  }
}
@media screen and (max-width: 480px) {
  .lower .beginner-wrap:before {
    top: 22.5%;
  }
}

.lower .beginner-wrap > .arrowtitle {
  margin: 0 auto 63px;
}

.lower .beginner-wrap > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 30px;
}

.lower .beginner-wrap > .read:last-of-type {
  margin: 0 0 60px;
}

.lower .beginner-wrap > .pleasebox {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 50px 60px;
  background: url(../img/common/newsside-cv-back.svg) repeat;
}

@media screen and (max-width: 480px) {
  .lower .beginner-wrap > .pleasebox {
    padding: 30px 30px 40px;
  }
}

.lower .beginner-wrap > .pleasebox > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  margin: 0 0 30px;
}

.lower .beginner-wrap > .pleasebox > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

.lower .beginner-wrap > .pleasebox > .dangeritem {
  margin: 0 0 20px;
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .beginner-wrap > .pleasebox > .dangeritem > .item {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .beginner-wrap > .pleasebox > .dangeritem > .item:not(:last-of-type) {
  margin: 0 0 10px;
}

.lower .beginner-wrap > .pleasebox > .dangeritem > .item:before {
  content: '※';
}

.lower .beginner-wrap > .pleasebox > .pleaseitem > .item {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .beginner-wrap > .pleasebox > .pleaseitem > .item:not(:last-of-type) {
  margin: 0 0 15px;
}

.lower .beginner-wrap > .pleasebox > .pleaseitem > .item:before {
  content: '・';
}

.lower .beginnerflow-wrap {
  padding: 3.1% 0 80px;
  background: #F6F0E4 url(../img/beginner/flow_back.svg) repeat-y center/cover;
}

@media screen and (max-width: 980px) {
  .lower .beginnerflow-wrap {
    background: #F6F0E4 url(../img/beginner/flow_back.svg) repeat-y center/contain;
  }
}

@media screen and (max-width: 767px) {
  .lower .beginnerflow-wrap {
    padding: 5% 0 5%;
  }
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap {
    padding: 10% 0 5%;
  }
}

.lower .beginnerflow-wrap > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 0 auto 3.1%;
  text-align: left;
}

@media screen and (max-width: 980px) {
  .lower .beginnerflow-wrap > .title {
    max-width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .lower .beginnerflow-wrap > .title {
    margin: 0 auto 7%;
  }
}

@media screen and (max-width: 767px) {
  .lower .beginnerflow-wrap > .title {
    margin: 0 auto 60px;
  }
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .title {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 auto 40px;
  }
}

.lower .beginnerflow-wrap > .title span {
  position: relative;
  padding: 0 0 0 40px;
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .title span {
    padding: 0 0 0 0;
  }
}

.lower .beginnerflow-wrap > .title span:before, .lower .beginnerflow-wrap > .title span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #000000;
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .title span:before, .lower .beginnerflow-wrap > .title span:after {
    width: 20px;
  }
}

.lower .beginnerflow-wrap > .title span:before {
  left: 0;
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .title span:before {
    left: -30px;
  }
}

.lower .beginnerflow-wrap > .title span:after {
  right: -40px;
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .title span:after {
    right: -30px;
  }
}

.lower .beginnerflow-wrap > .flowitem {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .beginnerflow-wrap > .flowitem {
    max-width: 100%;
  }
}

.lower .beginnerflow-wrap > .flowitem > .item {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}

@media screen and (max-width: 767px) {
  .lower .beginnerflow-wrap > .flowitem > .item {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.lower .beginnerflow-wrap > .flowitem > .item:not(:last-of-type) {
  margin: 0 0 8.67%;
}

.lower .beginnerflow-wrap > .flowitem > .item:before {
  content: "";
  width: 75px;
  height: 72px;
  display: block;
  position: absolute;
  top: -37.5px;
  left: -30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .lower .beginnerflow-wrap > .flowitem > .item:before {
    width: 45px;
    height: 42px;
    top: -15px;
    left: -15px;
  }
}

.lower .beginnerflow-wrap > .flowitem > .item:nth-of-type(1):before {
  background-image: url(../img/top/flow_number01.svg);
}

.lower .beginnerflow-wrap > .flowitem > .item:nth-of-type(2):before {
  background-image: url(../img/top/flow_number02.svg);
}

.lower .beginnerflow-wrap > .flowitem > .item:nth-of-type(3):before {
  background-image: url(../img/top/flow_number03.svg);
}

.lower .beginnerflow-wrap > .flowitem > .item:nth-of-type(4):before {
  background-image: url(../img/top/flow_number04.svg);
}

.lower .beginnerflow-wrap > .flowitem > .item > .image {
  order: 1;
  flex: 0 1 324px;
  -webkit-flex: 0 1 324px;
}

@media screen and (max-width: 767px) {
  .lower .beginnerflow-wrap > .flowitem > .item > .image {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 0 5%;
  }
}

.lower .beginnerflow-wrap > .flowitem > .item > .image img {
  width: 100%;
}

.lower .beginnerflow-wrap > .flowitem > .item > .readbox {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  order: 2;
  flex: 1 1;
  -webkit-flex: 1 1;
  margin: 0 0 0 6.12%;
}

@media screen and (max-width: 980px) {
  .lower .beginnerflow-wrap > .flowitem > .item > .readbox {
    margin: 0 0 0 3.5%;
  }
}

@media screen and (max-width: 767px) {
  .lower .beginnerflow-wrap > .flowitem > .item > .readbox {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}

.lower .beginnerflow-wrap > .flowitem > .item > .readbox > .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.22222;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .flowitem > .item > .readbox > .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.lower .beginnerflow-wrap > .flowitem > .item > .readbox > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .beginnerflow-wrap > .flowitem > .item > .readbox > .read {
    margin: 0 0 0 0;
  }
}

.lower .beginnerfeature-wrap {
  padding: 80px 0 8.85%;
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap {
    padding: 80px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .lower .beginnerfeature-wrap {
    padding: 80px 0 0;
  }
}

.lower .beginnerfeature-wrap > .arrowtitle {
  margin: 0 0 90px;
}

.lower .beginnerfeature-wrap > .featurecontents {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto 60px;
}

@media screen and (max-width: 980px) {
  .lower .beginnerfeature-wrap > .featurecontents {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .featurecontents {
    display: block;
    margin: 0 auto 10%;
  }
}

.lower .beginnerfeature-wrap > .featurecontents > .verticaltitle {
  flex: 0 1 300px;
  -webkit-flex: 0 1 300px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: -3em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .featurecontents > .verticaltitle {
    margin-top: 0;
    margin-bottom: 5%;
    white-space: normal;
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
  }
}

.lower .beginnerfeature-wrap > .featurecontents > .verticaltitle > span:nth-of-type(2) {
  margin-top: 3.2em;
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .featurecontents > .verticaltitle > span:nth-of-type(2) {
    margin-top: .5em;
    margin-left: 0;
  }
}

.lower .beginnerfeature-wrap > .featurecontents > .verticaltitle > span:nth-of-type(3) {
  margin-top: 5.1em;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .featurecontents > .verticaltitle > span:nth-of-type(3) {
    margin-top: .5em;
  }
}

.lower .beginnerfeature-wrap > .featurecontents > .readbox {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .beginnerfeature-wrap > .featurecontents > .readbox > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

.lower .beginnerfeature-wrap > .positivebox {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  margin: 0 auto 11%;
}

@media screen and (max-width: 980px) {
  .lower .beginnerfeature-wrap > .positivebox {
    max-width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .lower .beginnerfeature-wrap > .positivebox {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .positivebox {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.lower .beginnerfeature-wrap > .positivebox > .contents {
  max-width: 500px;
  width: 100%;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1280px) {
  .lower .beginnerfeature-wrap > .positivebox > .contents {
    max-width: 100%;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .positivebox > .contents {
    width: 100%;
    max-width: 100%;
  }
}

.lower .beginnerfeature-wrap > .positivebox > .contents > .title {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.45455;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .beginnerfeature-wrap > .positivebox > .contents > .title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.lower .beginnerfeature-wrap > .positivebox > .contents > .readbox {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .beginnerfeature-wrap > .positivebox > .contents > .readbox > .read:not(:last-of-type) {
  margin: 0 0 30px;
}

.lower .beginnerfeature-wrap > .positivebox > .image {
  position: absolute;
  width: 58.16%;
  top: 0;
  left: -13.27%;
}

@media screen and (max-width: 1280px) {
  .lower .beginnerfeature-wrap > .positivebox > .image {
    max-width: 100%;
    width: 45%;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .positivebox > .image {
    max-width: 100%;
    position: static;
    width: 100%;
    margin: 0 0 5%;
  }
}

.lower .beginnerfeature-wrap > .positivebox > .image img {
  width: 100%;
}

.lower .beginnerfeature-wrap > .explanationbox {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  margin: 0 auto 100px;
}

@media screen and (max-width: 980px) {
  .lower .beginnerfeature-wrap > .explanationbox {
    max-width: 100%;
  }
}

@media screen and (max-width: 1600px) {
  .lower .beginnerfeature-wrap > .explanationbox {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .explanationbox {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 auto 60px;
  }
}

.lower .beginnerfeature-wrap > .explanationbox > .contents {
  max-width: 590px;
  width: 100%;
  margin: 0 auto 0 0;
}

@media screen and (max-width: 1600px) {
  .lower .beginnerfeature-wrap > .explanationbox > .contents {
    max-width: 100%;
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .explanationbox > .contents {
    max-width: 100%;
    width: 100%;
  }
}

.lower .beginnerfeature-wrap > .explanationbox > .contents > .title {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.45455;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 60px -1em;
}

@media screen and (max-width: 1280px) {
  .lower .beginnerfeature-wrap > .explanationbox > .contents > .title {
    margin: 0 0 5% 0;
  }
}

@media screen and (max-width: 480px) {
  .lower .beginnerfeature-wrap > .explanationbox > .contents > .title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.lower .beginnerfeature-wrap > .explanationbox > .contents > .readbox {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .beginnerfeature-wrap > .explanationbox > .contents > .readbox > .read:not(:last-of-type) {
  margin: 0 0 30px;
}

.lower .beginnerfeature-wrap > .explanationbox > .image {
  position: absolute;
  width: 58.98%;
  top: -7.14%;
  right: -25.51%;
}

@media screen and (max-width: 1600px) {
  .lower .beginnerfeature-wrap > .explanationbox > .image {
    width: 45%;
    right: 5%;
  }
}

@media screen and (max-width: 980px) {
  .lower .beginnerfeature-wrap > .explanationbox > .image {
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .lower .beginnerfeature-wrap > .explanationbox > .image {
    position: static;
    max-width: 100%;
    width: 100%;
    margin: 0 0 5%;
  }
}

.lower .beginnerfeature-wrap > .explanationbox > .image img {
  width: 100%;
}

.lower .aftertreatment-wrap {
  margin: 0 0 60px;
}

.lower .aftertreatment-wrap > .arrowtitle {
  margin: 0 0 103px;
}

.lower .aftertreatment-wrap > .treatmentitem {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  align-items: stretch;
  -webkit-align-items: stretch;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 980px) {
  .lower .aftertreatment-wrap > .treatmentitem {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .lower .aftertreatment-wrap > .treatmentitem {
    display: block;
  }
}

.lower .aftertreatment-wrap > .treatmentitem > .item {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 600;
  flex: 0 1 250px;
  -webkit-flex: 0 1 250px;
  padding: 18.37% 20px 40px 20px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

@media screen and (max-width: 768px) {
  .lower .aftertreatment-wrap > .treatmentitem > .item {
    flex: 1 1;
    -webkit-flex: 1 1;
    padding: 25% 20px 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  .lower .aftertreatment-wrap > .treatmentitem > .item {
    padding: 35% 20px 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .lower .aftertreatment-wrap > .treatmentitem > .item:not(:last-of-type) {
    margin: 0 2.5% 0 0;
  }
}

@media screen and (max-width: 767px) {
  .lower .aftertreatment-wrap > .treatmentitem > .item:not(:last-of-type) {
    margin: 0 0 5% 0;
  }
}

.lower .aftertreatment-wrap > .treatmentitem > .item:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  top: 15px;
  width: 28.8%;
  height: 48%;
  background: url(../img/top/trouble-item-icon.svg) no-repeat center/contain;
}

.lower .faq-wrap {
  margin: 0 0 9.38%;
}

.lower .faq-wrap > .arrowtitle {
  margin: 0 0 90px;
}

.lower .faq-wrap > .faqitem {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5% 40px;
  margin: 0 auto 40px;
  position: relative;
}

@media screen and (max-width: 980px) {
  .lower .faq-wrap > .faqitem {
    max-width: 100%;
  }
}

.lower .faq-wrap > .faqitem:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  max-width: 980px;
  width: 100%;
  height: 6px;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

@media screen and (max-width: 980px) {
  .lower .faq-wrap > .faqitem:after {
    max-width: 100%;
    width: 90%;
  }
}

.lower .faq-wrap > .faqitem > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 200px 0 100px;
}

@media screen and (max-width: 768px) {
  .lower .faq-wrap > .faqitem > .title {
    padding: 0 200px 0 90px;
  }
}

@media screen and (max-width: 767px) {
  .lower .faq-wrap > .faqitem > .title {
    padding: 0 0 0 60px;
  }
}

@media screen and (max-width: 480px) {
  .lower .faq-wrap > .faqitem > .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.lower .faq-wrap > .faqitem > .title:before {
  content: "";
  width: 68px;
  height: 65px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/beginner/q_icon.svg) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .lower .faq-wrap > .faqitem > .title:before {
    width: 58px;
    height: 55px;
  }
}

@media screen and (max-width: 767px) {
  .lower .faq-wrap > .faqitem > .title:before {
    width: 48px;
    height: 45px;
  }
}

.lower .faq-wrap > .faqitem > .beguinerfaqdetail {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  letter-spacing: 0.1em;
  padding: 0 200px 0 100px;
  margin: 50px 0 0;
  position: relative;
  display: none;
}

@media screen and (max-width: 768px) {
  .lower .faq-wrap > .faqitem > .beguinerfaqdetail {
    padding: 0 0 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .lower .faq-wrap > .faqitem > .beguinerfaqdetail {
    padding: 0 0 0 50px;
  }
}

@media screen and (max-width: 480px) {
  .lower .faq-wrap > .faqitem > .beguinerfaqdetail {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.lower .faq-wrap > .faqitem > .beguinerfaqdetail.open {
  margin: 50px 0 0;
}

.lower .faq-wrap > .faqitem > .beguinerfaqdetail:before {
  content: "";
  width: 55px;
  height: 53px;
  position: absolute;
  left: 20px;
  top: 0;
  background: url(../img/beginner/a_icon.svg) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .lower .faq-wrap > .faqitem > .beguinerfaqdetail:before {
    width: 35px;
    height: 33px;
    left: 5px;
  }
}

.lower .faq-wrap > .faqitem > .faqbtn {
  color: #fff;
  line-height: 1.42857;
  letter-spacing: 0.05em;
  width: 170px;
  height: 40px;
  position: relative;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  cursor: pointer;
  position: absolute;
  right: 9%;
  top: 0;
}

@media screen and (max-width: 980px) {
  .lower .faq-wrap > .faqitem > .faqbtn {
    right: 5%;
  }
}

@media screen and (max-width: 767px) {
  .lower .faq-wrap > .faqitem > .faqbtn {
    position: relative;
    z-index: 1000;
    margin: 40px auto 0;
    right: 0;
  }
}

.lower .faq-wrap > .faqitem > .faqbtn:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/staff/biographybtn_back.svg) no-repeat center/contain;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.lower .faq-wrap > .faqitem > .faqbtn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  margin: 0 0 0 5px;
}

@media screen and (max-width: 480px) {
  .lower .faq-wrap > .faqitem > .faqbtn:after {
    margin: 0 0 0 10px;
  }
}

.lower .faq-wrap > .faqitem > .faqbtn.open:after {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #fff transparent;
}

/* スタッフ紹介 */
.lower .staff-wrap {
  padding: 3.1% 0 80px;
  background: url(../img/staff/object_back.svg) repeat-y top/cover;
}

@media screen and (max-width: 768px) {
  .lower .staff-wrap {
    background: url(../img/staff/object_back.svg) repeat-y top/contain;
  }
}

.lower .staffmain-wrap {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 980px) {
  .lower .staffmain-wrap {
    max-width: 100%;
  }
}

.lower .staffmain-wrap > .verticaltitle {
  font-size: 28px;
  font-size: 2.8rem;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: calc(5% + .65em);
  height: 100%;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 980px) {
  .lower .staffmain-wrap > .verticaltitle {
    font-size: 25px;
    font-size: 2.5rem;
    left: 3%;
  }
}

@media screen and (max-width: 768px) {
  .lower .staffmain-wrap > .verticaltitle {
    font-size: 20px;
    font-size: 2rem;
    left: 3%;
    writing-mode: vertical-rl;
  }
}

@media screen and (max-width: 480px) {
  .lower .staffmain-wrap > .verticaltitle {
    position: static;
    writing-mode: horizontal-tb;
    margin: 0 0 15px;
  }
}

.lower > .staff-wrap > .staffcontents {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 0 auto;
  padding: 0 5% 0 5%;
  position: relative;
}

@media screen and (max-width: 980px) {
  .lower > .staff-wrap > .staffcontents {
    max-width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .lower > .staff-wrap > .staffcontents {
    margin: 0 auto 5%;
    padding: 0 5% 5% 5%;
  }
}

@media screen and (max-width: 767px) {
  .lower > .staff-wrap > .staffcontents {
    margin: 0 auto 10%;
  }
}

.lower > .staff-wrap > .staffcontents:not(:last-of-type) {
  margin: 0 auto 3.1%;
  padding: 0 5% 3.1% 5%;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents:not(:last-of-type) {
    padding: 0 5% 30px 5%;
    margin: 0 auto 30px;
  }
}

.lower > .staff-wrap > .staffcontents:not(:last-of-type):after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  max-width: calc(980px - 40px);
  width: 100%;
  height: 6px;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

@media screen and (max-width: 980px) {
  .lower > .staff-wrap > .staffcontents:not(:last-of-type):after {
    max-width: 90%;
  }
}

.lower > .staff-wrap > .staffcontents:first-of-type {
  margin: 3.1% auto 3.1%;
}

@media screen and (max-width: 767px) {
  .lower > .staff-wrap > .staffcontents:first-of-type {
    margin: 40px auto 30px auto;
  }
}

.lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox {
  align-items: stretch;
  -webkit-align-items: stretch;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox > .positionname {
  padding: 0 50px 0 0;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox > .positionname {
    padding: 0;
  }
}

.lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox > .readbox {
  padding: 0 60px 0 40px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox > .readbox {
    padding: 0;
    margin: 0 0 0 5%;
  }
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents:nth-of-type(odd) > .profilebox > .readbox {
    margin: 0 0 0 0;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox {
  align-items: stretch;
  -webkit-align-items: stretch;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents > .profilebox {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .profilebox {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox > .positionname {
  padding: 0 0 0 30px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .positionname {
    padding: 0;
    position: absolute;
    left: 10px;
    top: 2.5%;
    max-width: 100%;
    min-height: 0%;
    width: 50px;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox > .positionname > * {
  writing-mode: vertical-rl;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .positionname > .title {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.30435;
  letter-spacing: 0.05em;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .positionname > .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox > .positionname > .title h2 {
  font-weight: 600;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .positionname > .detail {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .positionname > .detail {
    font-size: 25px;
    font-size: 2.5rem;
    max-width: 100%;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox > .positionname > * {
  writing-mode: vertical-rl;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox {
  flex: 1 1;
  -webkit-flex: 1 1;
  padding: 0 40px 0 60px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .readbox {
    padding: 0;
    margin: 0 0 0 5%;
  }
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .readbox {
    margin: 0 0 0 0;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents:not(:last-of-type) {
  margin: 0 0 30px;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  position: relative;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .title:after {
  content: "";
  position: absolute;
  bottom: -6px;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .title.thoughts:after {
  width: 143px;
  height: 6px;
  left: -10px;
  background: url(../img/staff/thought_underline.svg) no-repeat center/contain;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .title.qualification:after {
  width: 100px;
  height: 6px;
  left: -10px;
  background: url(../img/staff/qualification_unerline.svg) no-repeat center/contain;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .title.other:after {
  width: 143px;
  height: 6px;
  left: -10px;
  background: url(../img/staff/thought_underline.svg) no-repeat center/contain;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .title.hobby:after {
  width: 60px;
  height: 6px;
  left: -10px;
  background: url(../img/staff/hobby_underline.svg) no-repeat center/contain;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .detail {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .detail .nestdetail > .title {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.66667;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0 0 0 35px;
  display: table;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .detail .nestdetail > .title:before, .lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .detail .nestdetail > .title:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #750000;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .detail .nestdetail > .title:before {
  left: 0;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .readbox > .readcontents > .detail .nestdetail > .title:after {
  right: -35px;
}

.lower > .staff-wrap > .staffcontents > .profilebox > .image {
  flex: 0 1 300px;
  -webkit-flex: 0 1 300px;
  max-width: 100%;
}

@media screen and (max-width: 980px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .image {
    flex: 0 1 250px;
    -webkit-flex: 0 1 250px;
  }
}

@media screen and (max-width: 767px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .image {
    flex: 0 1 150px;
    -webkit-flex: 0 1 150px;
  }
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .profilebox > .image {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    width: 100%;
    margin: 0 0 5%;
  }
}

.lower > .staff-wrap > .staffcontents > .profilebox > .image img {
  width: 100%;
}

.lower > .staff-wrap > .staffcontents > .messagebox {
  max-width: calc(100% - 80px);
  padding: 20px 50px;
  background: #F6F0E4;
  margin: 0 auto 30px;
}

@media screen and (max-width: 767px) {
  .lower > .staff-wrap > .staffcontents > .messagebox {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .messagebox {
    padding: 20px 30px;
  }
}

.lower > .staff-wrap > .staffcontents > .messagebox > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 20px;
  position: relative;
}

.lower > .staff-wrap > .staffcontents > .messagebox > .title:after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 227px;
  height: 6px;
  left: -10px;
  background: url(../img/staff/messege_underline.svg) no-repeat center/contain;
}

.lower > .staff-wrap > .staffcontents > .messagebox > .detail {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower > .staff-wrap > .staffcontents > .biographybox {
  max-width: calc(100% - 80px);
  margin: 0 auto 60px;
  display: none;
}

@media screen and (max-width: 767px) {
  .lower > .staff-wrap > .staffcontents > .biographybox {
    max-width: 100%;
    margin: 0 auto 5%;
  }
}

.lower > .staff-wrap > .staffcontents > .biographybox > .title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
  position: relative;
}

.lower > .staff-wrap > .staffcontents > .biographybox > .title:after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 60px;
  height: 6px;
  left: -10px;
  background: url(../img/staff/hobby_underline.svg) no-repeat center/contain;
}

.lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl {
  line-height: 1.42857;
  letter-spacing: 0.05em;
  margin: 0 0 50px;
  table-layout: fixed;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl {
    margin: 0 0 5%;
  }
}

.lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row:not(:last-of-type) {
  margin: 0 0 20px;
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row {
    display: block;
  }
}

.lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row .title {
  flex: 0 0 100px;
  -webkit-flex: 0 0 100px;
  font-weight: normal;
  text-align: left;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row .title {
    display: block;
  }
}

.lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .biographybox > .detail .tbl .row .detail {
    display: block;
  }
}

.lower > .staff-wrap > .staffcontents > .biographybox > .detail .read {
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower > .staff-wrap > .staffcontents > .biographybtn {
  color: #fff;
  line-height: 1.42857;
  letter-spacing: 0.05em;
  width: 170px;
  height: 40px;
  position: relative;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  cursor: pointer;
}

.lower > .staff-wrap > .staffcontents > .biographybtn:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/staff/biographybtn_back.svg) no-repeat center/contain;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.lower > .staff-wrap > .staffcontents > .biographybtn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  margin: 0 0 0 5px;
}

@media screen and (max-width: 480px) {
  .lower > .staff-wrap > .staffcontents > .biographybtn:after {
    margin: 0 0 0 10px;
  }
}

.lower > .staff-wrap > .staffcontents > .biographybtn.open:after {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #fff transparent;
}

/* ニュース・プレスリリース */
/*----------------------------------------------------
	ニュース共通
----------------------------------------------------*/
.pagenavigation-wrap {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 16% 0 0;
}

@media screen and (max-width: 768px) {
  .pagenavigation-wrap {
    margin: 10% 0 15%;
  }
}

.pagenavigation-wrap > .pagination {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.pagenavigation-wrap > .pagination > a.page-numbers {
  margin: 0 20px 0 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: #fff;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 40px;
  height: 38.5px;
  background: url(../img/common/pagenavi-icon.svg) no-repeat center/contain;
}

.pagenavigation-wrap > .pagination > .dots{
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  width: auto;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .pagenavigation-wrap > .pagination > a.page-numbers {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 10px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .pagenavigation-wrap > .pagination > a.page-numbers {
    width: 30px;
    height: 28.8px;
  }
}

.pagenavigation-wrap > .pagination > a.next, .pagenavigation-wrap > .pagination > a.prev {
  width: auto;
  height: auto;
  background: none;
  color: #752500;
}

.pagenavigation-wrap > .pagination > a.next {
  margin: 0 0 0 12px;
}

@media screen and (max-width: 768px) {
  .pagenavigation-wrap > .pagination > a.next {
    margin: 0 0 0 5px;
  }
}

.pagenavigation-wrap > .pagination > a.prev {
  margin: 0 32px 0 0;
}

@media screen and (max-width: 768px) {
  .pagenavigation-wrap > .pagination > a.prev {
    margin: 0 15px 0 0;
  }
}

.pagenavigation-wrap > .pagination > span {
  margin: 0 20px 0 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: #fff;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 40px;
  height: 38.5px;
}

@media screen and (max-width: 768px) {
  .pagenavigation-wrap > .pagination > span {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 10px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .pagenavigation-wrap > .pagination > span {
    width: 30px;
    height: 28.8px;
  }
}

.pagenavigation-wrap > .pagination > span.current {
  background: url(../img/common/pagenavi-icon-current.svg) no-repeat center/contain;
}

.newsside-box {
  flex: 0 0 260px;
  -webkit-flex: 0 0 260px;
  padding: 11% 0 0;
}

@media screen and (max-width: 768px) {
  .newsside-box {
    padding: 0 0 0;
  }
}

.newsside-box > .filtering-box {
  margin: 0 0 23%;
}

@media screen and (max-width: 768px) {
  .newsside-box > .filtering-box {
    margin: 0 0 10%;
  }
}

.newsside-box > .filtering-box > .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.33333;
  letter-spacing: 0.1em;
  font-weight: medium;
  text-align: center;
  margin: 0 0 10px;
}

.newsside-box > .filtering-box > .detail > ul > li:last-of-type a:after {
  content: "";
  width: calc(100% + 20px);
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: -20px;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.newsside-box > .filtering-box > .detail > ul > li a {
  padding: 13px 0;
  position: relative;
  display: block;
}

.newsside-box > .filtering-box > .detail > ul > li a:before {
  content: "";
  width: calc(100% + 20px);
  height: 6px;
  display: block;
  position: absolute;
  top: -6px;
  left: -20px;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.newsside-box > .filtering-box > .detail > .newsitem > .item:last-of-type a:after {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.newsside-box > .filtering-box > .detail > .newsitem > .item a {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 13px 0;
  position: relative;
  display: block;
}

.newsside-box > .filtering-box > .detail > .newsitem > .item a:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.newsside-box > .filtering-box > .detail > .newsitem > .item a > * {
  max-width: 100%;
  width: 100%;
}

.newsside-box > .filtering-box > .detail > .newsitem > .item a > .time {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 2.18182;
  font-weight: 400;
}

.newsside-box > .filtering-box > .detail > .newsitem > .item a > .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.64286;
  font-weight: bold;
}

.newsside-box > .filtering-box > .detail > .yearitem > .item,
.newsside-box > .filtering-box > .detail > .categoryitem > .item {
  padding: 0 0 0 20px;
  position: relative;
}

.newsside-box > .filtering-box > .detail > .yearitem > .item:before,
.newsside-box > .filtering-box > .detail > .categoryitem > .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url(../img/common/newsside-arrow.svg) repeat-x center/contain;
  margin: 0 5px 0 0;
}

.newsside-box > .filtering-box > .detail > .yearitem > .item > a,
.newsside-box > .filtering-box > .detail > .categoryitem > .item > a {
  flex: 1 1;
  -webkit-flex: 1 1;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.92308;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.newsside-box > .filtering-box > .detail > .categoryitem > .item > a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.78571;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.newsside-box .cvbox {
  padding: 18px 15px;
  background: url(../img/common/newsside-cv-back.svg) no-repeat center/cover;
}

.newsside-box .cvbox > .title {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.29412;
  letter-spacing: 0.05em;
  font-weight: medium;
  text-align: center;
  margin: 0 0 5px;
}

.newsside-box .cvbox > .read {
  font-size: 10px;
  font-size: 1rem;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: medium;
  text-align: center;
  margin: 0 0 15px;
}

.newsside-box .cvbox > .mainbtn {
  position: relative;
  padding-top: 17%;
}

.newsside-box .cvbox > .mainbtn a {
  font-size: 12px;
  font-size: 1.2rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > ul > li:last-of-type a:after {
  width: 100%;
  left: 0;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > ul > li a {
  padding: 13px 0;
  position: relative;
  display: block;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > ul > li a:before {
  width: 100%;
  left: 0;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > .categoryitem > .item:last-of-type a:after {
  width: calc(100% + 20px);
  left: -20px;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > .categoryitem > .item a {
  padding: 13px 0;
  position: relative;
  display: block;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > .categoryitem > .item a:before {
  width: calc(100% + 20px);
  left: -20px;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > .newsitem > .item:last-of-type a:after {
  width: 100%;
  left: 0;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > .newsitem > .item a {
  padding: 13px 0;
  position: relative;
  display: block;
}

.columnarchive-wrap .newsside-box > .filtering-box > .detail > .newsitem > .item a:before {
  width: 100%;
  left: 0;
}

/*----------------------------------------------------
	ニュースアーカイブ
----------------------------------------------------*/
.lower .newsarchive-wrap {
  padding: 5% 0 80px;
}

.lower .newsarchive-wrap > .contents > .newscontents > .arrowtitle {
  margin: 0 0 93px;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .arrowtitle {
    margin: 0 0 17%;
  }
}

.lower .newsarchive-wrap > .contents {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: calc(1030px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .newsarchive-wrap > .contents {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .lower .newsarchive-wrap > .contents {
    display: block;
  }
}

.lower .newsarchive-wrap > .contents > .newscontents {
  flex: 1 1;
  -webkit-flex: 1 1;
  margin: 0 60px 0 0;
}

@media screen and (max-width: 768px) {
  .lower .newsarchive-wrap > .contents > .newscontents {
    margin: 0 0 0;
  }
}

.lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a {
  padding: 30px 4% 30px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}

@media screen and (max-width: 980px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a {
    padding: 20px 0 20px;
  }
}

.lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item:last-of-type a:after {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .time {
  order: 1;
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .time {
    margin: 0 10px 0 0;
  }
}

.lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .cat {
  order: 2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: 700;
  flex: 0 0 200px;
  -webkit-flex: 0 0 200px;
  margin: 0 25px 0 0;
}

@media screen and (max-width: 980px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .cat {
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    margin: 0 0 0 0;
  }
}

.lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .title {
  order: 3;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  flex: 1 1;
  -webkit-flex: 1 1;
}

@media screen and (max-width: 980px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .title {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    width: 100%;
    margin: 15px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap > .contents > .newscontents > .newsarchive-item > a .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------------------
    SingleContents
----------------------------------------------------------- */
.lower .newsarchive-wrap.single > .contents {
  align-items: stretch;
  -webkit-align-items: stretch;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .lower .newsarchive-wrap.single > .contents {
    display: block;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .newsarchive-wrap.single > .contents > .newscontents * > {
  max-width: 100%;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .readcontents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  margin: 0 0 10%;
  position: relative;
  height: 100%;
  word-break: break-all;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .readcontents {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .readcontents pre {
  white-space: pre-wrap;
  line-height: 25px;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox {
  margin: 0 0 8%;
}

.lower .newsarchive-wrap.single.column > .contents > .newscontents > .titlebox {
  margin: 0 0 30px;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 40px;
  font-size: 4rem;
  margin: 0 0 18px;
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .detailbox {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .detailbox > .time {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 23px 0 0;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .detailbox > .time {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 15px 0 0;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .detailbox > .cat {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  position: relative;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .detailbox > .cat {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .detailbox > .cat:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .thumbnail {
  margin: 0 0 30px;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .thumbnail img {
  width: 100%;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .snsbox {
  margin-top: auto;
  text-align: right;
  width: 100%;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 25px 0 0;
  padding: 25px 0 0;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox {
    margin: 25px 0 15%;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item a {
  display: block;
  position: relative;
  padding: 0 0 0 20px;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item a:before {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 14px;
  background-image: url(../img/news/previous-link-icon.svg);
  position: absolute;
  top: 50%;
  left: 0;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item a .title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 8px;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item a .title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item a .read {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item a .read {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item.next {
  text-align: right;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item.next a {
  padding: 0 20px 0 0;
}

.lower .newsarchive-wrap.single > .contents > .newscontents > .aroundbox > .item.next a:before {
  background-image: url(../img/news/next-link-icon.svg);
  left: 100%;
}

/* -----------------------------------------------------------
    ColumnContents
----------------------------------------------------------- */
.recommendcolumn-wrap {
  max-width: calc(1030px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  margin: 6.25% auto 0;
}

@media screen and (max-width: 980px) {
  .recommendcolumn-wrap {
    max-width: 100%;
  }
}

.recommendcolumn-wrap > .contents {
  max-width: 740px;
  width: 100%;
  padding: 30px 45px;
  background: url(../img/common/newsside-cv-back.svg) repeat;
}

@media screen and (max-width: 480px) {
  .recommendcolumn-wrap > .contents {
    padding: 20px 25px;
  }
}

.recommendcolumn-wrap > .contents > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 30px;
  padding: 0 0 10px;
  position: relative;
}

.recommendcolumn-wrap > .contents > .title:after {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.recommendcolumn-wrap > .contents > .recommenditem {
  width: 100%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 480px) {
  .recommendcolumn-wrap > .contents > .recommenditem {
    margin: 0 auto 40px;
  }
}

.recommendcolumn-wrap > .contents > .recommenditem:last-of-type {
  margin: 0 auto;
}

.recommendcolumn-wrap > .contents > .recommenditem > a {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .recommendcolumn-wrap > .contents > .recommenditem > a {
    display: block;
  }
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .thumbnail {
  flex: 0 0 120px;
  -webkit-flex: 0 0 120px;
  margin: 0 20px 0 0;
  height: 80px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .recommendcolumn-wrap > .contents > .recommenditem > a > .thumbnail {
    width: 100%;
    height: 100%;
    margin: 0 0 20px;
  }
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .thumbnail img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .textbox {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .textbox > .detail {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 20px;
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .textbox > .detail > .cat {
  font-weight: 700;
  position: relative;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .textbox > .detail > .cat:before {
  content: "";
  width: calc(100% - 41.2px);
  height: 6px;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .textbox > .detail > .cat:after {
  content: "";
  width: 11.2px;
  height: 11.8px;
  flex: 0 0 11.2px;
  -webkit-flex: 0 0 11.2px;
  margin: 0 15px;
  background: url(../img/common/arrow_right.svg) no-repeat center/contain;
}

.recommendcolumn-wrap > .contents > .recommenditem > a > .textbox > .detail > .time {
  font-size: 13px;
  font-size: 1.3rem;
}

/* コラム一覧 */
.lower .columnarchive-wrap {
  padding: 5% 0 10%;
}

.lower .columnarchive-wrap .newsside-box {
  padding: 0;
}

.lower .columnarchive-wrap > .titlebox {
  max-width: calc(1030px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .columnarchive-wrap > .titlebox {
    max-width: 100%;
  }
}

.lower .columnarchive-wrap > .titlebox > .arrowtitle {
  max-width: 740px;
  width: 100%;
  margin: 0 0 93px;
}

@media screen and (max-width: 480px) {
  .lower .columnarchive-wrap > .titlebox > .arrowtitle {
    margin: 0 0 17%;
  }
}

.lower .columnarchive-wrap > .contents {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: calc(1030px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .columnarchive-wrap > .contents {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .lower .columnarchive-wrap > .contents {
    display: block;
  }
}

.lower .columnarchive-wrap > .contents > .newscontents {
  flex: 1 1;
  -webkit-flex: 1 1;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 768px) {
  .lower .columnarchive-wrap > .contents > .newscontents {
    margin: 0 0 0 0;
  }
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem {
  margin: 0 0 8%;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  letter-spacing: 0.05em;
  font-weight: normal;
  margin: 0 0 20px;
  padding: 0 0 10px;
  position: relative;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .title:after {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 15px;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail > .time {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 25px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 25px 0 0;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail > .cat {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 25px;
  letter-spacing: 0.05em;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail > .cat a {
  position: relative;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail > .cat a:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: url(../img/news/line.svg) repeat-x center/cover;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents a {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}

@media screen and (max-width: 767px) {
  /*-
  .lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents a {
    display: block;
  }
  -*/
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail {
  flex: 0 0 220px;
  -webkit-flex: 0 0 220px;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 767px) {
  /*-
  .lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail {
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
  }
  -*/
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail img {
  width: 100%;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .readbox {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .readbox > .more {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 200;
  margin: 25px 0 0;
}

.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .readbox > .more span:before {
  content: "\f105";
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "fontawesome";
  margin: 0 10px 0 0;
}

/* 診療時間・アクセス */
.lower .consultationhours-wrap {
  padding: 5% 5% 0;
  margin: 0 auto 60px;
}

/* サイトマップ */
.lower .sitemap-wrap {
  padding: 5% 0 7.8%;
}

.lower .sitemap-wrap > .arrowtitle {
  margin: 0 0 5%;
}

@media screen and (max-width: 767px) {
  .lower .sitemap-wrap > .arrowtitle {
    margin: 0 0 15%;
  }
}

.lower .sitemap-wrap > .contents {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .sitemap-wrap > .contents {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .lower .sitemap-wrap > .contents {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  .lower .sitemap-wrap > .contents > .navitem {
    margin: 0 0 20px;
  }
}

.lower .sitemap-wrap > .contents > .navitem > .item {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 25px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .lower .sitemap-wrap > .contents > .navitem > .item {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.lower .sitemap-wrap > .contents > .navitem > .item:not(:last-of-type) {
  margin: 0 0 40px;
}

@media screen and (max-width: 480px) {
  .lower .sitemap-wrap > .contents > .navitem > .item:not(:last-of-type) {
    margin: 0 0 20px;
  }
}

.lower .sitemap-wrap > .contents > .navitem > .item > .columnitem {
  margin: 30px 0 0 2em;
}

.lower .sitemap-wrap > .contents > .navitem > .item > .columnitem > .item {
  margin: 0 0 20px;
  position: relative;
}

.lower .sitemap-wrap > .contents > .navitem > .item > .columnitem > .item:before {
  content: "";
  display: block;
  width: 7.6px;
  height: 12.6px;
  background: url(../img/common/footer-column-icon.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: -1em;
}

/* プライバシー */
.lower .privacy-wrap {
  padding: 5% 0 0;
}

.lower .privacy-wrap > .arrowtitle {
  margin: 0 0 93px;
}

@media screen and (max-width: 480px) {
  .lower .privacy-wrap > .arrowtitle {
    margin: 0 0 15%;
  }
}

.lower .privacy-wrap > .contents {
  padding: 0 0 7.8%;
  background: #fff url(../img/privacy/main_back.svg) no-repeat top/cover;
  position: relative;
}

@media screen and (max-width: 980px) {
  .lower .privacy-wrap > .contents {
    background: #fff url(../img/privacy/main_back.svg) repeat-y top/contain;
  }
}

.lower .privacy-wrap > .contents > .inner {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  max-width: calc(900px + 10%);
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.lower .privacy-wrap > .contents > .inner > .read {
  line-height: 25px;
  letter-spacing: 0.05em;
  margin: 0 0 4.5%;
}

.lower .privacy-wrap > .contents > .inner > .privacyitem {
  line-height: 25px;
  letter-spacing: 0.05em;
  margin: 0 0 3.3%;
}

.lower .privacy-wrap > .contents > .inner > .privacyitem > .title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 0 0 10px;
}

.lower .privacy-wrap > .contents > .inner > .privacyitem > .title span {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 10px 0 0;
}

.lower .privacy-wrap > .contents > .inner > .privacyitem > .detail .nestitem {
  margin: 10px 0 0;
}

.lower .privacy-wrap > .contents > .inner > .privacyitem > .detail .nestitem > .item {
  margin: 0 0 10px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .privacy-wrap > .contents > .inner > .privacyitem > .detail .nestitem > .item:before {
  content: "";
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  margin: .5em 15px 0 0;
}

@media screen and (max-width: 480px) {
  .lower .privacy-wrap > .contents > .inner > .privacyitem > .detail .nestitem > .item:before {
    margin: .5em 10px 0 0;
  }
}

.lower .privacy-wrap > .contents > .inner > .sosumi {
  margin: 4.5% 0 0;
}

/* お問い合わせ */
.lower .contact-wrap {
  padding: 15px 0 6.2%;
  background: #F6F0E4 url(../img/contact/wrap-back.svg) repeat-y top / cover;
}

@media screen and (max-width: 480px) {
  .lower .contact-wrap {
    background: #F6F0E4 url(../img/contact/wrap-back.svg) repeat-y center/contain;
  }
}

.lower .contact-wrap > .breadcrumbs {
  margin: 0 auto 0;
}

.lower .contact-box {
  margin-top: 6.2%;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .contact-box {
    max-width: 100%;
  }
}

.lower .contact-box > .arrowtitle {
  margin: 0 0 10%;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .arrowtitle {
    margin: 0 0 62px;
  }
}

.lower .contact-box > .readbox {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.05em;
  padding: 0 40px;
  margin: 0 0 10%;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .readbox {
    padding: 0 15px;
  }
}

.lower .contact-box > .readbox > .read:not(:last-of-type) {
  margin: 0 0 20px;
}

.lower .contact-box > .tel-wrap {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: url(../img/contact/tel-box-back.svg) repeat;
  padding: 20px 10% 20px 20%;
  margin: 0 0 10%;
}

@media screen and (max-width: 980px) {
  .lower .contact-box > .tel-wrap {
    padding: 20px 5% 20px 5%;
  }
}

@media screen and (max-width: 768px) {
  .lower .contact-box > .tel-wrap {
    display: block;
  }
}

.lower .contact-box > .tel-wrap > .readbox {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
}

@media screen and (max-width: 768px) {
  .lower .contact-box > .tel-wrap > .readbox {
    display: table;
    margin: 0 auto 20px;
  }
}

.lower .contact-box > .tel-wrap > .readbox > .title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.66667;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 10px;
}

.lower .contact-box > .tel-wrap > .readbox > .detail {
  line-height: 1.42857;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.lower .contact-box > .tel-wrap > .detailbox {
  flex: 0 1 60%;
  -webkit-flex: 0 1 60%;
  margin: 0 0 0 6%;
}

@media screen and (max-width: 980px) {
  .lower .contact-box > .tel-wrap > .detailbox {
    flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
  }
}

@media screen and (max-width: 768px) {
  .lower .contact-box > .tel-wrap > .detailbox {
    display: table;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .tel-wrap > .detailbox {
    display: block;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .tel {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.82609;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 0 5px;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .tel-wrap > .detailbox > .tel {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .tel > a {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 0.88571;
  letter-spacing: 0.1em;
  padding: 0 0 0 .5em;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .tel-wrap > .detailbox > .tel > a {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime {
    display: block;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .time {
  font-weight: bold;
  writing-mode: vertical-rl;
  flex: 0 0 36px;
  -webkit-flex: 0 0 36px;
  background: #EBE5DF;
  padding: 5px 10px;
  line-height: 1.21429;
  letter-spacing: 0.1em;
  margin: 0 15px 0 0;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .time {
    display: block;
    writing-mode: horizontal-tb;
    text-align: center;
    margin: 0 0 10px;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 8px;
}

@media screen and (max-width: 480px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation {
    margin: 0 0 15px;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .title {
  flex: 0 0 5em;
  -webkit-flex: 0 0 5em;
  margin: 0 8px 0 0;
}

@media screen and (max-width: 768px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .title {
    margin: 0 10px 10px 0;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .detail {
  flex: 1 1;
  -webkit-flex: 1 1;
}

@media screen and (max-width: 768px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .detail {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .detail > .calender {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 380px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .detail > .calender {
    display: block;
  }
}

.lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .detail > .calender > .item:not(:last-of-type) {
  margin: 0 13px 0 0;
}

@media screen and (max-width: 380px) {
  .lower .contact-box > .tel-wrap > .detailbox > .receptiontime > .detail > .nestinformation > .detail > .calender > .item:not(:last-of-type) {
    margin: 0 0 10px 0;
  }
}

.lower .contact-box .formcontents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

.lower .contact-box .formcontents .form-wrap {
  padding: 6.1% 4%;
  background: #fff;
}

.lower .contact-box .formcontents .form-wrap > .formitem {
  margin: 0 0 5%;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents .form-wrap > .formitem {
    margin: 0 0 10%;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem > .title,
.lower .contact-box .formcontents .form-wrap .nestformitem > .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667;
  font-weight: bold;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row nowrap;
  flex-direction: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .lower .contact-box .formcontents .form-wrap .formitem > .title,
  .lower .contact-box .formcontents .form-wrap .nestformitem > .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem > .title span,
.lower .contact-box .formcontents .form-wrap .nestformitem > .title span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #5C5A57;
  margin: 0 0 0 20px;
}

.lower .contact-box .formcontents .form-wrap .formitem > .details > .note {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .lower .contact-box .formcontents .form-wrap .formitem > .details > .note {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem.side {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row nowrap;
  flex-direction: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .contact-box .formcontents .form-wrap .formitem.side .nestformitem {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
}

.lower .contact-box .formcontents .form-wrap .formitem.side .nestformitem:first-of-type {
  margin: 0 15% 0 0;
}

@media screen and (max-width: 767px) {
  .lower .contact-box .formcontents .form-wrap .formitem.side .nestformitem:first-of-type {
    margin: 0 40px 0 0;
  }
}

.lower .contact-box .formcontents .radiowrap {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents .radiowrap {
    display: block;
  }
}

.lower .contact-box .formcontents .radiowrap .radiobox {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}

.lower .contact-box .formcontents .radiowrap .radiobox:not(:last-of-type) {
  margin-right: 60px;
}

@media screen and (max-width: 767px) {
  .lower .contact-box .formcontents .radiowrap .radiobox:not(:last-of-type) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents .radiowrap .radiobox:not(:last-of-type) {
    margin-right: 0;
    margin: 0 0 20px 26px;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .title {
  margin: 0 0 20px;
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap {
    display: block;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap:not(:last-of-type) {
  margin: 0 0 20px;
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox {
  flex: 1 1;
  -webkit-flex: 1 1;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox {
    margin: 0 0 0 0;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox > .title {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

@media screen and (max-width: 767px) {
  .lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox > .title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox > .details {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap.trigger > .radiobox {
  margin: 0 15px 0 36px;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap.trigger > .radiobox {
    margin: 0 0 15px 26px;
  }
}

.lower .contact-box .formcontents .form-wrap .formitem.trigger > .details > .radiowrap.trigger > .otherbox {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .contact-box .formcontents > .form-wrap > .noteitem {
  line-height: 1.42857;
  letter-spacing: 0.05em;
}

.lower .contact-box .formcontents > .form-wrap > .noteitem > .item:not(:last-of-type) {
  margin: 0 0 10px;
}

.lower .contact-box .formcontents > .form-wrap > .noteitem > .item:before {
  content: "※";
}

.lower .contact-box .formcontents > .submitbtn-box,
.lower .contact-box .formcontents > .btnitem > .item.back,
.lower .contact-box .formcontents > .btnitem > .item.next {
  text-align: center;
  max-width: 271px;
  width: 100%;
  height: 61px;
  position: relative;
  z-index: 0;
}
.lower .contact-box .formcontents > .submitbtn-box {
  margin: 80px auto 0;
}
.lower .contact-box .formcontents > .submitbtn-box:before,
.lower .contact-box .formcontents > .btnitem > .item.next:before,
.lower .contact-box .formcontents > .btnitem > .item.back:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/contact/submit-back.svg) no-repeat center/contain;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.lower .contact-box .formcontents > .submitbtn-box:after,
.lower .contact-box .formcontents > .btnitem > .item.back:after,
.lower .contact-box .formcontents > .btnitem > .item.next:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 40px;
  top: 46%;
  transform: translateY(-50%);
}
.lower .contact-box .formcontents > .submitbtn-box input,
.lower .contact-box .formcontents > .btnitem > .item.back input,
.lower .contact-box .formcontents > .btnitem > .item.next input {
  color: #fff;
  line-height: 1.42857;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  padding: 0 25px 5px 0;
}
.lower .contact-box .formcontents > .btnitem {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 80px 0 0;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents > .btnitem {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents > .btnitem {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents > .btnitem > .item {
    margin: 0 auto;
  }
}

.lower .contact-box .formcontents > .btnitem > .item:first-of-type {
  margin: 0 10% 0 0;
}

@media screen and (max-width: 480px) {
  .lower .contact-box .formcontents > .btnitem > .item:first-of-type {
    margin: 0 auto 5%;
  }
}

.lower .contact-box .formcontents > .btnitem > .item .backbtn {
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  cursor: pointer;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  color: #fff;
  background: #DB5800;
  display: inline-block;
}

.wpcf7-response-output {
  max-width: 980px !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1024px) {
  .wpcf7-response-output {
    max-width: 90% !important;
  }
 }


.standardinput {
  font-size: 16px;
  font-size: 1.6rem;
  border: none;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  background: #EBE5DF;
}

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

.standardinput::placeholder {
  color: #B7B7B7;
}
textarea::placeholder {
  color: #B7B7B7;
}

.xxsinput {
  width: 70px;
  height: 50px;
  background: #EBE5DF;
  padding: 15px 20px;
  text-align: right;
  border: none;
}

.min-area {
  width: 100%;
  border: none;
  background: #EBE5DF;
  padding: 15px 20px;
  height: 75px;
}

.md-area {
  width: 100%;
  border: none;
  background: #EBE5DF;
  padding: 15px 20px;
  height: 135px;
}

.radiobox {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-left: 36px;
}

@media screen and (max-width: 767px) {
  .radiobox {
    margin-left: 36px;
  }
}

@media screen and (max-width: 480px) {
  .radiobox {
    margin-left: 26px;
  }
}

.radiobox .radio-input {
  display: none;
}

.radiobox label {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .radiobox label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.radiobox label:after, .radiobox label:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.radiobox label:before {
  left: -30px;
  margin-top: 0px;
  width: 14px;
  height: 14px;
  opacity: 0;
  z-index: 1;
  background: #BA9067;
}

@media screen and (max-width: 767px) {
  .radiobox label:before {
    left: -22.5px;
    margin-top: 0px;
    width: 10px;
    height: 10px;
  }
}

.radiobox label:after {
  left: -36px;
  width: 26px;
  height: 26px;
  background: #EFEFEF;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .radiobox label:after {
    left: -26px;
    width: 16px;
    height: 16px;
  }
}

.radio-input:checked ~ label:before {
  opacity: 1;
  /* 要素を表示する */
}

input[type="number"]::placeholder {
  color: #B7B7B7;
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

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

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

/* お問い合わせ確認画面 */
.lower .contactconfirm-box {
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  padding: 10.9% 5% 5%;
}

@media screen and (max-width: 980px) {
  .lower .contactconfirm-box {
    max-width: 100%;
  }
}

.lower .contactconfirm-box > .arrowtitle {
  margin: 0 0 10%;
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box > .arrowtitle {
    margin: 0 0 15%;
  }
}

.lower .contactconfirm-box .formcontents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

.lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap {
  padding: 6.1% 4%;
  background: #fff;
}

.lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap > .formitem {
  margin: 0 0 5%;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap .formitem {
    display: block;
  }
}

.lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap .formitem.none {
  display: block;
}

@media screen and (max-width: 480px) {
  .lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap .formitem {
    margin: 0 0 10%;
  }
}

.lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap .formitem > .title {
  flex: 0 1 230px;
  -webkit-flex: 0 1 230px;
}

.lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap .formitem > .details {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .wpcf7-form.custom-wpcf7c-confirmed .form-wrap .formitem > .details.sex {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem > .details.sex .radiobox {
  margin: 0 60px 0 36px;
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem > .details.sex .radiobox {
    margin: 0 20px 0 26px;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem > .title,
.lower .contactconfirm-box .formcontents > .form-wrap .nestformitem > .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667;
  font-weight: bold;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row nowrap;
  flex-direction: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem > .title,
  .lower .contactconfirm-box .formcontents > .form-wrap .nestformitem > .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem > .title span,
.lower .contactconfirm-box .formcontents > .form-wrap .nestformitem > .title span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #5C5A57;
  margin: 0 0 0 20px;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.side {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row nowrap;
  flex-direction: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.side .nestformitem {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.side .nestformitem:first-of-type {
  margin: 0 15% 0 0;
}

@media screen and (max-width: 767px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem.side .nestformitem:first-of-type {
    margin: 0 40px 0 0;
  }
}

.lower .contactconfirm-box .formcontents .radiowrap {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box .formcontents .radiowrap {
    display: block;
  }
}

.lower .contactconfirm-box .formcontents .radiowrap .radiobox {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}

.lower .contactconfirm-box .formcontents .radiowrap .radiobox:not(:last-of-type) {
  margin-right: 60px;
}

@media screen and (max-width: 767px) {
  .lower .contactconfirm-box .formcontents .radiowrap .radiobox:not(:last-of-type) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box .formcontents .radiowrap .radiobox:not(:last-of-type) {
    margin-right: 0;
    margin: 0 0 20px 26px;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .title {
  margin: 0 0 20px;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap {
    display: block;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap:not(:last-of-type) {
  margin: 0 0 20px;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox {
  flex: 1 1;
  -webkit-flex: 1 1;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox {
    margin: 0 0 0 0;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox > .title {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

@media screen and (max-width: 767px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox > .title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap > .intorducerbox > .details {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap.trigger > .radiobox {
  margin: 0 15px 0 36px;
}

@media screen and (max-width: 480px) {
  .lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap.trigger > .radiobox {
    margin: 0 0 15px 26px;
  }
}

.lower .contactconfirm-box .formcontents > .form-wrap .formitem.trigger > .details > .radiowrap.trigger > .otherbox {
  flex: 1 1;
  -webkit-flex: 1 1;
}

.standardinput {
  font-size: 16px;
  font-size: 1.6rem;
  border: none;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  background: #EBE5DF;
}
input:-internal-autofill-selected {
  appearance: none;
  background: #EBE5DF !important;
}
.wpcf7-validates-as-required {
  background: #EBE5DF !important;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #EBE5DF inset;
}



.wpcf7c-conf{
  background: #EBE5DF !important;
  border: none !important;
}

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

.standardinput::placeholder {
  color: #B7B7B7;
}

.xxsinput {
  width: 70px;
  height: 50px;
  background: #EBE5DF;
  padding: 15px 20px;
  text-align: right;
  border: none;
}

.min-area {
  width: 100%;
  border: none;
  background: #EBE5DF;
  padding: 15px 20px;
  height: 75px;
}

.md-area {
  width: 100%;
  border: none;
  background: #EBE5DF;
  padding: 15px 20px;
  height: 135px;
}

.radiobox {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-left: 36px;
}

@media screen and (max-width: 767px) {
  .radiobox {
    margin-left: 36px;
  }
}

@media screen and (max-width: 480px) {
  .radiobox {
    margin-left: 26px;
  }
}

.radiobox .radio-input {
  display: none;
}

.radiobox label {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .radiobox label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
@media screen and (max-width: 480px) {
  .wpcf7-form-control.wpcf7-radio {
    display: block;
  }
}
span.wpcf7-list-item {
  margin-right: 60px !important;
}
span.wpcf7-list-item.last {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  span.wpcf7-list-item {
    margin-right: 30px !important;
  }
}
@media screen and (max-width: 480px) {
  span.wpcf7-list-item {
    display: block !important;
    margin-right: 0px;
    margin-bottom: 20px !important;
  }
  span.wpcf7-list-item.last {
    margin-bottom: 0 !important;
  }
}
.wpcf7-list-item input {
  display: none;
}
span.wpcf7-list-item-label {
  position: relative;
  z-index: 0;
  cursor: pointer;
}
span.wpcf7-list-item-label::before, span.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
span.wpcf7-list-item-label::before {
  left: -30px;
  margin-top: 0px;
  width: 14px;
  height: 14px;
  opacity: 0;
  z-index: 1;
  background: #BA9067;
}
@media screen and (max-width: 767px) {
  span.wpcf7-list-item-label::before {
    left: -22.5px;
    margin-top: 0px;
    width: 10px;
    height: 10px;
  }
}
span.wpcf7-list-item-label:after {
  left: -36px;
  width: 26px;
  height: 26px;
  background: #EFEFEF;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  span.wpcf7-list-item-label:after {
    left: -26px;
    width: 16px;
    height: 16px;
  }
}

.wpcf7-list-item input:checked ~ span.wpcf7-list-item-label:before {
  opacity: 1;
  /* 要素を表示する */
}



/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

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

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* お問い合わせ完了 */
.lower .contactcomplete-wrap {
  padding: 15px 0 6.2%;
  background: #F6F0E4 url(../img/contact/complete-wrap-back.svg) repeat-y;
}

@media screen and (max-width: 480px) {
  .lower .contactcomplete-wrap {
    background: #F6F0E4 url(../img/contact/complete-wrap-back.svg) repeat-y center/contain;
  }
}

.lower .contactcomplete-wrap > .breadcrumbs {
  margin: 0 auto 0;
}

.lower .contactcomplete-box {
  margin-top: 6.2%;
  max-width: calc(980px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

@media screen and (max-width: 980px) {
  .lower .contactcomplete-box {
    max-width: 100%;
  }
}

.lower .contactcomplete-box > .arrowtitle {
  margin: 0 0 10%;
}

@media screen and (max-width: 480px) {
  .lower .contactcomplete-box > .arrowtitle {
    margin: 0 0 15%;
  }
}

.lower .contactcomplete-box > .contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667;
  font-weight: bold;
  padding: 6.2%;
  background: #fff;
}

@media screen and (max-width: 480px) {
  .lower .contactcomplete-box > .contents {
    font-size: 14px;
    font-size: 1.4rem;
  }
}



/* 12/11 追加　*/
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .formitem.side {
  display: block;
}

.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .formitem.side .nestformitem {
  margin: 0 0 5%;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .title {
  flex: 0 1 230px;
  -webkit-flex: 0 1 230px;
}
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .details,
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .radiowrap {
  flex: 1 1;
  -webkit-flex: 1 1;
}
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .details {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .details span:nth-of-type(2) {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 0 10px;
}
.lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .details .xxsinput {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .formitem.side .nestformitem {
    display: block;
  }
  .lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .title {
    margin: 0 0 10px;
  }
  .lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .radiowrap .radiobox {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .lower .contact-wrap.confirm .contact-box .formcontents .form-wrap .nestformitem > .radiowrap .radiobox {
    margin-left: 0;
  }
}


.entry-content h2 {
	font-size: 25px;
	line-height: 1.5;
	text-align: center;
}
.entry-content h3 {
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	background: #007141;
	padding: 10px;
}
.entry-content .detailbox {
	  border: #E0E0E0 solid medium;
    padding: 20px;
}
.entry-content table {
	font-size: 12px;
	 border-collapse: collapse;
	 border: #E0E0E0 solid 1px;
}
.entry-content table a {
	color: #2902ED;
}
.entry-content table td {
	 border: #E0E0E0 solid 1px;
	padding: 5px;
	vertical-align: middle;
}
.entry-content table th {
	 border: #E0E0E0 solid 1px;
	padding: 5px;
	vertical-align: middle;
}
.entry-content table td:first-child {
	vertical-align: middle;
}

/* 03.20 TOPページニュース追加 */
.topnews-wrap {
  padding: 60px 0;
  background-color: #F6F0E4;
}
.topnews-wrap .contents {
  max-width: calc(1250px + 10%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}
.topnews-wrap .topnews-item {
  padding: 2em 0;
  border-bottom: 1px solid #BA9067;
}
.topnews-wrap .topnews-item a {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 480px) {
  .topnews-wrap .topnews-item a {
    flex-wrap: wrap;
  }
}
.topnews-wrap .topnews-item .time {
  margin-right: 1em;
}
.topnews-wrap .topnews-item .cat {
  margin-right: 1em;
  min-width: 4em;
}
@media screen and (max-width: 480px) {
  .topnews-wrap .topnews-item .title {
    width: 100%;
    margin-top: 0.5em;
  }
}
.topnews-wrap .mainbtn{
  margin-top: 3.44%;
}
@media screen and (max-width: 767px) {
  .topnews-wrap .mainbtn{
    margin-top: 28px;
  }
}
.topnews-wrap .mainbtn a {
  width: 238px;
  height: 61px;
  margin: 0 auto;
  background: url(../img/common/btn_back_min.svg) no-repeat center/contain;
}

/* 2021.03.サイドバー修正 */
.newsside-box > .filtering-box > .detail > .categoryitem > .item.child:before{
  left: 1.2em;
}
.newsside-box > .filtering-box > .detail > .categoryitem > .item.child a{
  padding-left: 1.2em;
}
/* コラム一覧バナー */
.column-bnr-wrap {
  padding: 5% 0 7.8%;
}
.lower .columnarchive-wrap.column-bnr-wrap > .titlebox > .arrowtitle{
  max-width: 100%;
}
.column-bnr{
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.column-bnr a{
  flex: 0 0 calc( 33.3333% - 18px );
}
.column-bnr a .desc{
  margin-top: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .column-bnr{
    flex-wrap: wrap;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .column-bnr a{
    flex: 0 0 100%;
  }
  .column-bnr a:nth-child(n+2){
    margin-top: 20px;
  }
  .column-bnr a .desc{
    font-size: 1.3rem;
  }
}

/* 2021.05.28 サイドバー修正 */
.newsside-box > .search-box {
  margin: 0 0 23%;
}

@media screen and (max-width: 768px) {
  .newsside-box > .search-box {
    margin: 0 0 10%;
  }
}
.newsside-box > .search-box > .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.33333;
  letter-spacing: 0.1em;
  font-weight: medium;
  text-align: center;
  margin: 0 0 10px;
}
.search-box form{
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.search-box input[type="text"]{
  height: 40px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  border: 1px solid #ddd;
  padding: 0.5em;
  width: 100%;
  max-width: calc( 100% - 40px );
}
.search-box input[type="submit"]{
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../img/column/btn-search.svg);
  text-indent: 120%;
  overflow: hidden;
  white-space: nowrap;
}
.searchtitle h1{
  font-size: 28px;
  font-size: 2.8rem;
}
.columnarchive-wrap .arrowtitle{
  text-align: left;
}
.columnarchive-wrap .arrowtitle:after{
  content: none;
}
.columnarchive-wrap .desc{
  display: block;
  margin-bottom: 1em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
.lower .columnarchive-wrap > .titlebox > .arrowtitle{
  margin-bottom: 2em;
}
/*- 記事レイアウト修正 -*/
.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail > .cat a{
  display: inline-block;
  margin-right: 1em;
  color: #888;
  text-decoration: underline;
}
.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .detail > .cat a:before{
  content: none;
}
.lower .newsarchive-wrap.single > .contents > .newscontents > .titlebox > .title{
  font-family: 'Noto Serif JP', serif;
}
.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .title{
  font-size: 2.6rem;
  margin: 0 0 1em;
  padding: 0 0 0.4em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .title{
    font-size: 2.0rem;
  }
}
.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail {
  height: 220px;
  text-align: center;
}
.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .readbox{
  line-height: 1.7;
}
@media screen and (max-width: 980px) {
  .lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail {
    flex: 0 0 140px;
    height: 140px;
    margin: 0 15px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .lower .columnarchive-wrap > .contents > .newscontents > .newsarchiveitem > .contents .thumbnail {
    flex: 0 0 30vw;
    height: 30vw;
    margin: 0 15px 0 0;
  }
}
.column-mainvisual{
  text-align: center;
  max-width: 100%;
  padding: 0 5%;
  margin-top: calc( -5% + 15px );
  margin-bottom: 4em;
}
@media screen and (max-width: 980px) {
  .column-mainvisual img{
    max-width: 64vw;
  }
}
.column-mainvisual.blog{
  background-color: #ddf5f7;
}
.column-mainvisual.daily{
  background-color: #fff4d6;
}
.column-mainvisual.daikei{
  background-color: #eee;
}
.column-mainvisual .arrowtitle{
  margin-top: 1em;
  max-width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.column-mainvisual .arrowtitle:after{
  content: none;
}
.entry-content > p{
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.entry-content > h2:nth-child(n+2),
.entry-content > h3:nth-child(n+2)
.entry-content > h4:nth-child(n+2)
.entry-content > h5:nth-child(n+2)
.entry-content > h6:nth-child(n+2){
  margin-top: 2em;
  margin-bottom: 0.95em;
}
.entry-content > p:nth-child(n+2){
  margin-top: 2em;
}
.nopost{
  font-size: 1.6rem;
}
/* 記事詳細：タグ一覧 */
.tagbox{
  width: 100%;
  margin: 2em 0;
}
.tagbox p{
  text-align: right;
}
.tagbox a{
  display: inline-block;
  margin-right: 1em;
  color: #777;
  text-decoration: underline;
}

/* ページトップボタン */
#pagetop{
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: 30px;
  max-width: 12vw;
  max-height: 12vw;
  opacity: 0;
  transition-property:
  opacity,bottom ;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
}
#pagetop.js-pagetop-active{
  opacity: 1;
  bottom: 10px;
}
#pagetop.js-pagetop-active.js-pagetop-hidden{
  opacity: 0;
  bottom: 40px;
}
/* トップページメインビジュアル　テキストを読みやすく修正 */
@media screen and (max-width: 768px) {
  .mainimg-wrap > .textbox > .title > span span {
    /*- background-color: #fff; -*/
    padding: 0.2em;
    display: inline-block;
  }
  .mainimg-wrap > .textbox > .title > span:nth-child(2) span{
    position: relative;
    /*- top: 0.5em; -*/
  }
  .mainimg-wrap > .textbox > .title > span:nth-child(3) span {
    position: relative;
    /*- top: 1em; -*/
  }
}
/* 抜粋を表示 */
.excerpt{
	margin-bottom: 2em;
	padding: 1.5em;
	background-color: #F6F0E4;
	font-size: 1.4rem;
	line-height: 1.6;
}
.excerpt h4{
	margin-bottom: 1em;
	font-size: 1.6rem;
	color: #750000;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #bd8f8f;
}
/* 目次 */
#toc_container{
	padding: 1.5em !important;
}
.toc_list > li:nth-child(n+2){
	margin-top: 0.5em !important;
}

.article-snsbox {
	width: 100%;
}
.article-snsbox ul {
	margin: 0 auto;
	text-align: right;
	width: 100%;
	display: block;
}
.article-snsbox li {
	width: 90px;
	margin-right: 5px;
	text-align: center;
	margin-bottom: .5em;
	display: inline-block;
}
a.naifix-sns-button {
	color: #fff;
	text-align: center;
	text-decoration: none;
}
.naifix-sns-button:hover {
	color: #fff;
}
.arrow_box {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 3px 3px 3px 3px;
	color: #666;
	height: 30px;
	width: 88px;
	margin-bottom: 8px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.arrow_box:after,
.arrow_box:before {
	border: medium solid transparent;
	content: " ";
	height: 0;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 100%;
	width: 0;
}
.arrow_box:after {
	border-color: #FFFFFF rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
	border-width: 4px;
	margin-left: -4px;
}
.arrow_box:before {
	border-color: #CCCCCC rgba(204, 204, 204, 0) rgba(204, 204, 204, 0);
	border-width: 5px;
	margin-left: -5px;
}
.arrow_box span {
	line-height: 28px;
}
.sns-button-image {
	width: 88px;
	height: 42px;
	overflow: hidden;
	font-size: 12px;
	background-color: #ddd;
	border-radius: 4px;
	line-height: 42px;
	box-shadow: 1px 1px 0 rgba(255, 255, 255, .4) inset;
}
.sns-button-image:hover {
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .1) inset;
}
.sns-button-image .fa,
.sns-button-image span {
	margin-right: .2em;
}
.sns-button-image span {
	font-weight: bold;
}
.sbi-twitter {
	background-color: #1b95e0;
	border: 1px solid #1b95e0;
}
.sbi-facebook {
	background-color: #4661b0;
	border: 1px solid #4661b0;
}
.sbi-googleplus {
	background-color: #db4437;
	border: 1px solid #db4437;
}
.sbi-hatenab {
	background-color: #00a4de;
	border: 1px solid #00a4de;
}
.sbi-pocket {
	background-color: #ee4156;
	border: 1px solid #ee4156;
}
.sbi-feedly {
	background-color: #85c047;
	border: 1px solid #85c047;
}
/* ****************************************************************************
Discussion
* ************************************************************************** */
.discussion {
	margin: 2em 0;
	font-size: 1.4rem;
	width: 100%;
}
.trackback {
	margin: 2em 0;
}
.comments {
	margin: 2em 0;
}

.discussion-title {
	margin-bottom: 1em;
	font-size: 2.0rem;
}
.comments-pagination {
	margin: 2em 0 3em;
}
.no-comments {
	margin: 2em 0;
	color: #f00;
	font-size: 1.4rem;
	font-style: italic;
}

/* ----------------------------------------------------------------------------
Comments Form
---------------------------------------------------------------------------- */
.required {
	color: #f00;
}

.comment-respond {}
.comment-reply-title {
	margin: 2em 0 1em;
	font-size: 2.0rem;
}
.comment-form {
	width: 100%;
}
.comment-form label {
	display: block;
	margin: 12px 0 8px;
	font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="url"] {
	width: 100%;
}
.comment-form-comment {}
.comment-form-author {}
.comment-form-email {}
.comment-form-url {}
.form-submit {
	text-align: right;
}
.form-submit {
	margin-top: 1.5em;
}
.form-submit .submit{
	padding: 0.5em 1.2em;
}

/* Message
---------------------------------------------------------------------------- */
.must-log-in {}

.comment-notes {
	margin: 1em 0;
}
.comment-form-cookies-consent {}
.comment-form-cookies-consent input[type="checkbox"] + label {
	display: inline-block;
}

.logged-in-as {
	margin: 1em 0;
}

/* ----------------------------------------------------------------------------
Comments List
---------------------------------------------------------------------------- */
.comments-list,
.comments-list .children {
	list-style: none;
}
.comments-list .children {
	margin-left: 24px;
	padding-left: 24px;
}
.comments-list .comment {
	margin: 1em 0;
}

.comments-list li:before {
	display: none;
}

/* ----------------------------------------------------------------------------
Comments Body
---------------------------------------------------------------------------- */
.comment-body {
	padding: 24px;
	border: 1px solid #ccc;
}

.comment-meta {
	margin-bottom: 1.5em;
}
.comment-author {
	position: relative;
	z-index: 2;
	margin-bottom: 0.4em;
	font-size: 16px;
}
.comment-author .avatar {
	width: 50px;
	height: 50px;
}
.comment-author .says {
	display: none;
}
.comment-metadata {
	color: #767676;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.comment-metadata a {
	color: #767676;
}
.comment-metadata a.comment-edit-link {
	margin-left: 1em;
	color: #222;
}

.comment-awaiting-moderation {
	color: #f00;
}

.comment-body {
	margin-bottom: 1em;
}

.comment-reply-link {
	position: relative;
	font-weight: 800;
}

.comment-reply-link .icon {
	position: absolute;
	top: 0;
	width: 1em;
	height: 1em;
	color: #222;
}

.children .comment-author .avatar {
	width: 30px;
	height: 30px;
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	padding: 2px;
	border: 1px solid #333;
}

/* ----------------------------------------------------------------------------
Comments Pagination
---------------------------------------------------------------------------- */
.comments-pagination {
	margin: 8px auto;
}
.comments-pagination .nav-links {
	text-align: center;
}
.comments-pagination .nav-links .page-numbers,
.comments-pagination .nav-links .current {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 8px 4px;
	border: 1px solid #005bac;
	border-radius: 50%;
	font-size: 1.4rem;
	text-decoration: none;
	line-height: 30px;
}
.comments-pagination .nav-links .current {
	border: 1px solid #005bac;
	border-radius: 50%;
	background: #005bac;
	color: #fff;
}
.comments-pagination .nav-links .dots {
	margin: 8px 0;
	border: 0;
	font-weight: bold;
}
.comments-pagination .nav-links a.page-numbers:hover {
	border-color: #f00;
	background: #f00;
	color: #fff;
	transition: all .3s;
}
.comments-pagination .nav-links a.prev.page-numbers,
.comments-pagination .nav-links a.next.page-numbers {
	width: auto;
	padding-right: 6px;
	padding-left: 6px;
	border: 0;
	border-bottom: 1px solid #005bac;
	border-radius: 0;
	background: transparent;
}
.comments-pagination .nav-links a.prev.page-numbers:hover ,
.comments-pagination .nav-links a.next.page-numbers:hover {
	border-color: #f00;
	background: #f00;
	color: #fff;
}
.comment-form-url{
	display: none;
}


/* ----------------------------------------------------------------------------
 よくあるご質問
---------------------------------------------------------------------------- */

.faqnav{
    padding: 2em 0;
}
.faqnav .item:nth-child(n+2){
    margin-top: 0.6em;
}
.faqnav .item a{
    display: block;
    padding: 0.8em 0.6em 0.8em 3.2em;
    text-decoration: underline;
    color: #750000;
    position: relative;
    font-size: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 2px;
}
.faqnav .item a:before{
    content: "Q";
    position: absolute;
    top: 50%;
    left: 0.6em;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    font-size: 1em;
    text-align: center;
    line-height: 1.6em;
    color: #fff;
    background-color: #750000;
}

.faqitem{
    padding: 2em 0;
}
.faqitem .item:nth-child(n+2){
    padding-top: 3em;
}
.faqitem .item h3{
    position: relative;
    padding: 0.8em 0.6em 0.8em 3.2em;
    font-size: 1.8rem;

}
.faqitem .item h3:before{
    content: "Q";
    position: absolute;
    top: 50%;
    left: 0em;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    font-size: 1em;
    text-align: center;
    line-height: 1.6em;
    color: #fff;
    background-color: #750000;
}
.faqitem .item .text p{
    line-height: 1.7;
}
.faqitem .item .text p + p{
    margin-top: 1em;
}
.faqitem .item .text h4{
    margin-top: 1em;
    color: #750000;
    padding-bottom: 0.2em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #BA9067;
    font-size: 1.6rem;
}

/* ----------------------------------------------------------------------------
 読者登録フォーム
---------------------------------------------------------------------------- */

.mail-box{
  margin-top: 4em;
  padding: 2em;
  background-color: #efefef;
  border: 1px solid #ddd;
}
.mail-box h2{
  font-size: 2rem;
  margin-bottom: 1em;
  font-family: 'Noto Serif JP', serif;
}
.mail-box .read{
  font-size: 1.4rem;
}
.mail-box .formitem{
  margin-top: 1em;
}
.mail-box .formitem .title{
  margin-bottom: 1em;
  font-family: 'Noto Serif JP', serif;
}
.mail-box .formitem .details span.wpcf7-list-item-label:after{
  background-color: #fff;
}
.mail-box .wpcf7-submit{
  margin: 2em auto 0;
  width: 10em;
  background-color: #750000;
  padding: 0.5em;
  color: #fff;
  display: block;
}
@media screen and (max-width: 480px){
  .mail-box{
    padding: 2em 1.5em 1em;
  }
  .mail-box .formitem .details span.wpcf7-list-item{
    margin-bottom: 0.5em !important;
  }
  .mail-box .wpcf7-submit{
    margin-top: 1em;
  }
}
.unsubscribed-box{
  width: 600px;
  max-width: 90%;
  margin: 4em auto;
}
.mail-box.unsubscribed{

}
.mail-box.unsubscribed h2{
  text-align: center;
}
.mail-box.unsubscribed .read{
  text-align: center;
}
.mail-box.unsubscribed .wpcf7-checkbox{
  background-color: transparent !important;
}
.mail-box.unsubscribed span.wpcf7-list-item{
  display: block;
  position: relative;
}
.mail-box.unsubscribed span.wpcf7-list-item:not(.first){
  margin-top: 1em;
}
.mail-box.unsubscribed .formitem .details span.wpcf7-list-item-label{
  padding-left: 2em;
}
.mail-box.unsubscribed .formitem .details span.wpcf7-list-item-label:before{
  width: 9px;
  height: 12px;
  border-right: 3px solid #750000;
  border-bottom: 3px solid #750000;
  left: 6px;
  top: 2px;
  background-color: transparent;
  border-radius: 0;
  transform: rotate(45deg);
}
.mail-box.unsubscribed .formitem .details span.wpcf7-list-item-label:after{
  width: 20px;
  height: 20px;
  border-radius: 0;
  left: 0;
}


/* ----------------------------------------------------------------------------
  2021.12 予約・相談・お問い合わせボタン
---------------------------------------------------------------------------- */

.mainbtn.contact a {
  height: auto;
  padding: 0;
}
.mainbtn.contact a:before,
.mainbtn.contact a:after {
  content: none;
}
.mainbtn.contact a img{
  max-height: 100%;
}

/* ----------------------------------------------------------------------------
  2022.02 鍼道一の会 年会員用ブログ
---------------------------------------------------------------------------- */

.column-mainvisual.member-blog{
  background-color: #f1e6e6;
}
.lower .columnarchive-wrap > .contents.column-bnr-member {
	text-align: center;
	display: block;
	margin-top: 40px;
}

/* ----------------------------------------------------------------------------
  2022.06 診察時間・料金
---------------------------------------------------------------------------- */

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


.c-table-wrap {
  margin-bottom: 3em;
}
.c-table.border {
  position: relative;
  width: 100%;
  text-align: center;
  table-layout: fixed;
  background-image: url(../img/common/border_h.png), url(../img/common/border_v.png);
  background-repeat: repeat-x, repeat-y;
  background-position: top -1px left, top left -2px;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}
.c-table.border th,
.c-table.border td {
  padding: 1em 6px calc( 1em + 3px ) 0;
  font-weight: 600;
  background-image: url(../img/common/border_h.png), url(../img/common/border_v.png);
  background-repeat: repeat-x, repeat-y;
  background-position: bottom -2px left, top right -1px;
  vertical-align: middle;
}
.c-table.border thead th {
  background-color: #F6F0E4;
  background-image: url(../img/common/border_h.png), url(../img/common/border_v.png), url(../img/common/border_h.png);
  background-repeat: repeat-x, repeat-y, repeat-x;
  background-position: bottom -2px left, top right -1px, top -1px left;
  font-size: 1.2em;
}
.c-table.border thead th:first-child {
  background-color: #F6F0E4;
  background-image: url(../img/common/border_h.png), url(../img/common/border_v.png), url(../img/common/border_h.png), url(../img/common/border_v.png);
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-position: bottom -2px left, top right -1px, top -1px left, top left -1px;
}
.c-table.border td .c-block {
  display: inline-block;
}
.c-table.border td .mark {
  display: block;
  color: #B88F7B;
  font-size: 1.5em;
}
.c-table.border td .name {
  display: block;
}
.c-table.border .time {
  display: block;
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .c-table.border {
    font-size: clamp(1.6rem, 4.125vw, 2rem);
  }
  .c-table.border th,
  .c-table.border td {
    padding: 0.5em 6px calc( 0.5em + 3px ) 0;
  }
  .c-table.border thead th .time {
    font-size: calc( 0.8em / 1.2 );
  }
  .c-table.border .no-time td {
    padding-top: 0.9em;
    padding-bottom: calc( 0.9em + 3px);
  }
  .c-table.border .no-time.no-name td {
    padding-top: 1.4em;
    padding-bottom: calc( 1.4em + 3px);
  }
}
/* 診療時間のご案内 */
@media screen and (max-width: 768px) {
  .c-table.consultation th:first-child,
  .c-table.consultation td:first-child {
    width: 20%;
  }
}
/* 施術料金のご案内 */
.c-table.price tbody th {
  background-color: #FFFFE8;
}
.c-table.border tbody th[colspan],
.c-table.border tbody th[rowspan] {
  background-color: #FFFFE8;
  background-image: url(../img/common/border_h.png), url(../img/common/border_v.png), url(../img/common/border_v.png);
  background-repeat: repeat-x, repeat-y, repeat-y;
  background-position: bottom -2px left, top right -1px, top left -1px;
}
@media screen and (max-width: 768px) {
  .c-table.price th:first-child,
  .c-table.price td:first-child {
    width: 30%;
  }
  .c-table.price tbody th .vertical {
    display: inline-block;
    width: 1em;
    line-height: 1.2;
    /*
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: pre;
    */
  }
  .c-table.price tbody th .rotate {
    display: inline-block;
    transform: rotate(90deg);
  }
}


/* ----------------------------------------------------------------------------
 コンタクトフォーム7
---------------------------------------------------------------------------- */
/* 送信時のメッセージ */
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip{
	display: block;
	margin-top: 1em;
	font-size: 0.9em;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
    margin: 10px 0 0;
    padding: 1.5em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	border: none !important;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
	color: #B94A48;
	background-color: #F2DEDE;
	border: 1px solid #EED3D7;
}
.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
	color: #3A87AD;
	background-color: #D9EDF7;
	border: 1px solid #BCE8F1;
}
.pum-content .mail-box{
	margin-top: 0;
	padding: 0;
	background-color: transparent;
	border: none;
}
.pum-content .mail-box .formitem .details span.wpcf7-list-item-label:after{
	background: #eee;
}
.pum-content .wpcf7 .wpcf7-form .wpcf7-response-output{
	max-width: 100% !important;
}
.readsales{
	margin-top: 2em;
	/*text-align: center;
	background-color: #fff;
	padding: 1.5em;
	*/
}
.readsales h3{
	font-size: 1.1em;
	margin-bottom: 0.5em;
}
.readsales p{
	line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .readsales p{
	  text-align: left;
  }
}

/* ----------------------------------------------------------------------------
reCAPTCHA
---------------------------------------------------------------------------- */
.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
	margin-top: 2em;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}

.grecaptcha-badge { 
  //visibility: hidden;
  bottom: 80px!important;
 }