@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #082b48;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

.inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  letter-spacing: 0.7px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #E81919;
}
@media (max-width: 767px) {
  .section-title::after {
    width: 42px;
    height: 3px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 26px;
    padding-bottom: 18px;
  }
}

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

/* スマホのみ適用 */
@media screen and (min-width: 768px) { /*横幅が761px以上になったら適用*/
  .sp {
    display: none;
  }
}
/* PCのみ適用 */
@media screen and (max-width: 768px) { /*横幅が76px以下になったら適用*/
  .pc {
    display: none;
  }
}
.header {
  background: #fff;
  height: 80px;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px rgba(8, 43, 72, 0.3);
  z-index: 100;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .header {
    height: 100px;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  height: inherit;
  margin: 0 100px;
}
@media (max-width: 767px) {
  .header_inner {
    display: block;
  }
}

.header_logo {
  display: block;
  width: 80px;
}
@media (max-width: 767px) {
  .header_logo {
    width: 60px;
    padding: 15px 0 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header_logo img {
  display: block;
}

.header_nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  .header_nav {
    font-size: 12px;
    justify-content: space-around;
  }
}

.header_nav li {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .header_nav li {
    margin: 0;
  }
}
.header_nav li a {
  text-decoration: none;
  font-weight: 700;
  padding-bottom: 7px;
  color: #082b48;
  display: block;
  position: relative;
}
.header_nav li a::before {
  content: "";
  width: 0;
  left: 40%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid #E81919;
  position: absolute;
  display: block;
}
.header_nav li a:hover:before {
  width: 40%;
  border-bottom: 3px solid #E81919;
}
.header_nav li a::after {
  content: "";
  width: 0;
  right: 40%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid #E81919;
  position: absolute;
  display: block;
}
.header_nav li a:hover:after {
  width: 40%;
  border-bottom: 3px solid #E81919;
}

/* レスポンシブ */
@media only screen and (max-width: 768px) {
  .drawer-icon {
    display: block;
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 300;
    transition: transform 0.5s ease 0s;
    padding: 7px 7px 16px 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
  }
  .drawer-icon.is-active {
    transform: translateX(-216px);
    background: transparent;
  }
  .drawer-icon.is-active .drawer-icon_bar1 {
    transform: rotate(-45deg);
    top: 8px;
    background: #fff;
  }
  .drawer-icon.is-active .drawer-icon_bar2 {
    display: none;
  }
  .drawer-icon.is-active .drawer-icon_bar3 {
    transform: rotate(45deg);
    top: 8px;
    background: #fff;
  }
  .drawer-icon.is-active .drawer-icon_bar4 {
    display: none;
  }
  .drawer-icon_bars {
    width: 22px;
    height: 20px;
    display: block;
    position: relative;
  }
  .drawer-icon_bar1,
  .drawer-icon_bar2,
  .drawer-icon_bar3 {
    position: absolute;
    width: 22px;
    height: 3px;
    background: #082b48;
    top: 0;
    left: 0;
  }
  .drawer-icon_bar1 {
    top: 0;
  }
  .drawer-icon_bar2 {
    top: 8px;
  }
  .drawer-icon_bar3 {
    top: 16px;
  }
  .drawer-icon_bar4 {
    position: absolute;
    top: 22px;
    left: -3px;
    font-size: 10px;
  }
  .drawer-content {
    width: 220px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    z-index: 299;
    transform: translateX(105%);
  }
  .drawer-content.is-active {
    transform: translateX(0);
    transition: transform 0.5s ease 0s;
  }
  .drawer-content_item {
    border-bottom: 1px dotted #707070;
    margin: 10px 0;
  }
  .drawer-content_item a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 16px 0 16px 22px;
    font-size: 15px;
  }
  .drawer-backgraund {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 298;
    display: none;
  }
  .drawer-backgraund.is-active {
    display: block;
  }
}
.main-visual {
  height: 200px;
  width: auto;
  background: url(../img/prof.jpg) no-repeat center top/cover;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .main-visual {
    margin-top: 0;
    height: 140px;
  }
}

.main-visual_title {
  text-align: left;
  padding: 75px 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .main-visual_title {
    display: none;
  }
}

/*=====================
   profile/history
=====================*/
h2 {
  font-weight: 700;
  font-size: 30px;
  padding: 50px 10px 10px;
}

@media (max-width: 767px) {
  .profile-title {
    font-size: 20px;
  }
}

.subtitle {
  font-weight: 700;
  font-size: 20px;
  color: crimson;
  padding-left: 20px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .subtitle {
    font-size: 14px;
  }
}

dt {
  float: left;
  clear: left;
  width: 120px;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 0;
  margin-left: 20px;
}
@media (max-width: 767px) {
  dt {
    float: none;
    font-size: 14px;
    padding: 10px 0 5px 0;
    margin: 0 0 0 12px;
  }
}

dt::after {
  content: "";
}

dd {
  float: left;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: #082b48;
}
@media (max-width: 767px) {
  dd {
    float: none;
    font-size: 14px;
    margin: 0 0 0 12px;
    padding: 0;
  }
}

/*=====================
 profile
=====================*/
.profile {
  padding-bottom: 50px;
  letter-spacing: 0.5px;
}

/*=====================
 history
=====================*/
.history {
  background-color: #f6efdb;
  letter-spacing: 0.5px;
  padding-bottom: 24px;
}

@media (max-width: 767px) {
  .history-title {
    font-size: 20px;
  }
}

.footer {
  height: 60px;
  line-height: 60px;
  background: linear-gradient(to bottom, #181f44, #082b48);
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    height: 40px;
    line-height: 40px;
  }
}

.footer_copy {
  font-size: 12px;
  text-align: right;
}
@media (max-width: 767px) {
  .footer_copy {
    height: 40px;
    font-size: 10px;
    text-align: center;
  }
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
}
@media (max-width: 767px) {
  .to-top {
    right: 12px;
    bottom: 12px;
  }
}
.to-top a {
  text-decoration: none;
}
.to-top a img {
  width: 50px;
}
@media (max-width: 767px) {
  .to-top a img {
    width: 36px;
  }
}